nukeReferences: Use stdenvNoCC

This commit is contained in:
Eelco Dolstra 2019-10-11 17:10:12 +02:00
parent 03423f467f
commit cae6db88d3
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -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;
}