mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
nukeReferences: Use stdenvNoCC
This commit is contained in:
parent
03423f467f
commit
cae6db88d3
@ -3,10 +3,11 @@
|
||||
# path (/nix/store/eeee...). This is useful for getting rid of
|
||||
# dependencies that you know are not actually needed at runtime.
|
||||
|
||||
{ stdenv, perl }:
|
||||
{ stdenvNoCC, perl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenvNoCC.mkDerivation {
|
||||
name = "nuke-references";
|
||||
builder = ./builder.sh;
|
||||
# FIXME: get rid of perl dependency.
|
||||
inherit perl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user