nixpkgs/pkgs/build-support/nuke-references/default.nix

14 lines
427 B
Nix
Raw Normal View History

# 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.
2019-10-11 15:10:12 +00:00
{ stdenvNoCC, perl }:
2019-10-11 15:10:12 +00:00
stdenvNoCC.mkDerivation {
name = "nuke-references";
builder = ./builder.sh;
2019-10-11 15:10:12 +00:00
# FIXME: get rid of perl dependency.
2015-10-18 14:53:29 +00:00
inherit perl;
}