nixpkgs/pkgs/build-support/nuke-references/default.nix
2019-10-11 17:12:09 +02:00

14 lines
427 B
Nix

# The program `nuke-refs' created by this derivation replaces all
# references to the Nix store in the specified files by a non-existant
# path (/nix/store/eeee...). This is useful for getting rid of
# dependencies that you know are not actually needed at runtime.
{ stdenvNoCC, perl }:
stdenvNoCC.mkDerivation {
name = "nuke-references";
builder = ./builder.sh;
# FIXME: get rid of perl dependency.
inherit perl;
}