summary refs log tree commit diff
path: root/pkgs/build-support/nuke-references/default.nix
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-10-18 17:53:29 +0300
committerNikolay Amiantov <ab@fmap.me>2015-10-18 18:41:11 +0300
commit3c7871a1c027da0b22c8b280944e374273f2874b (patch)
treeee8b0bb42b8820ed7078ca42513bf4205bc14e04 /pkgs/build-support/nuke-references/default.nix
parentc81fb457c9f505c8093000f522df24b7482d0cb7 (diff)
downloadnixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.tar
nixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.tar.gz
nixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.tar.bz2
nixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.tar.lz
nixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.tar.xz
nixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.tar.zst
nixpkgs-3c7871a1c027da0b22c8b280944e374273f2874b.zip
nuke-references: support -e option
Diffstat (limited to 'pkgs/build-support/nuke-references/default.nix')
-rw-r--r--pkgs/build-support/nuke-references/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/build-support/nuke-references/default.nix b/pkgs/build-support/nuke-references/default.nix
index d672184553f..8f976ad462c 100644
--- a/pkgs/build-support/nuke-references/default.nix
+++ b/pkgs/build-support/nuke-references/default.nix
@@ -3,9 +3,10 @@
 # path (/nix/store/eeee...).  This is useful for getting rid of
 # dependencies that you know are not actually needed at runtime.
 
-{stdenv}:
+{ stdenv, perl }:
 
 stdenv.mkDerivation {
   name = "nuke-references";
   builder = ./builder.sh;
-}
\ No newline at end of file
+  inherit perl;
+}