mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
13 lines
380 B
Nix
13 lines
380 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.
|
|
|
|
{ stdenv, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nuke-references";
|
|
builder = ./builder.sh;
|
|
inherit perl;
|
|
}
|