build-support/php: drop unused moreutils dependency (#425760)
This commit is contained in:
commit
ad3d096295
@ -3,7 +3,6 @@
|
||||
makeSetupHook,
|
||||
jq,
|
||||
writeShellApplication,
|
||||
moreutils,
|
||||
cacert,
|
||||
buildPackages,
|
||||
}:
|
||||
@ -18,9 +17,8 @@ in
|
||||
{
|
||||
composerRepositoryHook = makeSetupHook {
|
||||
name = "composer-repository-hook.sh";
|
||||
propagatedBuildInputs = [
|
||||
propagatedNativeBuildInputs = [
|
||||
jq
|
||||
moreutils
|
||||
cacert
|
||||
];
|
||||
substitutions = {
|
||||
@ -30,9 +28,8 @@ in
|
||||
|
||||
composerInstallHook = makeSetupHook {
|
||||
name = "composer-install-hook.sh";
|
||||
propagatedBuildInputs = [
|
||||
propagatedNativeBuildInputs = [
|
||||
jq
|
||||
moreutils
|
||||
cacert
|
||||
];
|
||||
substitutions = {
|
||||
@ -45,9 +42,8 @@ in
|
||||
|
||||
composerWithPluginVendorHook = makeSetupHook {
|
||||
name = "composer-with-plugin-vendor-hook.sh";
|
||||
propagatedBuildInputs = [
|
||||
propagatedNativeBuildInputs = [
|
||||
jq
|
||||
moreutils
|
||||
cacert
|
||||
];
|
||||
substitutions = {
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
makeSetupHook,
|
||||
jq,
|
||||
writeShellApplication,
|
||||
moreutils,
|
||||
cacert,
|
||||
buildPackages,
|
||||
}:
|
||||
@ -18,9 +17,8 @@ in
|
||||
{
|
||||
composerVendorHook = makeSetupHook {
|
||||
name = "composer-vendor-hook.sh";
|
||||
propagatedBuildInputs = [
|
||||
propagatedNativeBuildInputs = [
|
||||
jq
|
||||
moreutils
|
||||
cacert
|
||||
];
|
||||
substitutions = {
|
||||
@ -30,9 +28,8 @@ in
|
||||
|
||||
composerInstallHook = makeSetupHook {
|
||||
name = "composer-install-hook.sh";
|
||||
propagatedBuildInputs = [
|
||||
propagatedNativeBuildInputs = [
|
||||
jq
|
||||
moreutils
|
||||
cacert
|
||||
];
|
||||
substitutions = {
|
||||
|
||||
@ -740,6 +740,7 @@ rec {
|
||||
name ? lib.warn "calling makeSetupHook without passing a name is deprecated." "hook",
|
||||
# hooks go in nativeBuildInputs so these will be nativeBuildInputs
|
||||
propagatedBuildInputs ? [ ],
|
||||
propagatedNativeBuildInputs ? [ ],
|
||||
# these will be buildInputs
|
||||
depsTargetTargetPropagated ? [ ],
|
||||
meta ? { },
|
||||
@ -758,6 +759,7 @@ rec {
|
||||
inherit meta;
|
||||
inherit depsTargetTargetPropagated;
|
||||
inherit propagatedBuildInputs;
|
||||
inherit propagatedNativeBuildInputs;
|
||||
strictDeps = true;
|
||||
# TODO 2023-01, no backport: simplify to inherit passthru;
|
||||
passthru =
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user