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