···3# path (/nix/store/eeee...). This is useful for getting rid of
4# dependencies that you know are not actually needed at runtime.
56-{ stdenv, perl }:
78-stdenv.mkDerivation {
9 name = "nuke-references";
10 builder = ./builder.sh;
011 inherit perl;
12}
···3# path (/nix/store/eeee...). This is useful for getting rid of
4# dependencies that you know are not actually needed at runtime.
56+{ stdenvNoCC, perl }:
78+stdenvNoCC.mkDerivation {
9 name = "nuke-references";
10 builder = ./builder.sh;
11+ # FIXME: get rid of perl dependency.
12 inherit perl;
13}