Remove corepkgs/unpack-channel.nix

This commit is contained in:
Eelco Dolstra
2020-09-17 09:41:02 +02:00
parent 10d1865f5f
commit 787469c7b6
4 changed files with 11 additions and 3 deletions
-1
View File
@@ -1,5 +1,4 @@
corepkgs_FILES = \
unpack-channel.nix \
fetchurl.nix
$(foreach file,config.nix $(corepkgs_FILES),$(eval $(call install-data-in,$(d)/$(file),$(datadir)/nix/corepkgs)))
-12
View File
@@ -1,12 +0,0 @@
{ name, channelName, src }:
derivation {
builder = "builtin:unpack-channel";
system = "builtin";
inherit name channelName src;
# No point in doing this remotely.
preferLocalBuild = true;
}