summary refs log tree commit diff
path: root/pkgs/build-support/setup-hooks/make-binary-wrapper
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-01-01 22:10:24 +0200
committerArtturin <Artturin@artturin.com>2023-02-07 21:02:00 +0200
commit4e3dcf364ed477075baea851fba264a20e47bb20 (patch)
treec5881f7902e1144836d6e24d957b6823339e4cde /pkgs/build-support/setup-hooks/make-binary-wrapper
parent8be7ab60b17f772b88358a8f1b6aeedd3306b13a (diff)
downloadnixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.tar
nixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.tar.gz
nixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.tar.bz2
nixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.tar.lz
nixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.tar.xz
nixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.tar.zst
nixpkgs-4e3dcf364ed477075baea851fba264a20e47bb20.zip
treewide: makeSetupHook deps -> propagatedBuildInputs
Diffstat (limited to 'pkgs/build-support/setup-hooks/make-binary-wrapper')
-rw-r--r--pkgs/build-support/setup-hooks/make-binary-wrapper/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/build-support/setup-hooks/make-binary-wrapper/default.nix b/pkgs/build-support/setup-hooks/make-binary-wrapper/default.nix
index c81a253b0de..17b97b1082e 100644
--- a/pkgs/build-support/setup-hooks/make-binary-wrapper/default.nix
+++ b/pkgs/build-support/setup-hooks/make-binary-wrapper/default.nix
@@ -11,8 +11,7 @@
 
 makeSetupHook {
   name = "make-binary-wrapper-hook";
-
-  deps = [ dieHook ]
+  propagatedBuildInputs = [ dieHook ]
     # https://github.com/NixOS/nixpkgs/issues/148189
     ++ lib.optional (stdenv.isDarwin && stdenv.isAarch64) cc;