Nix/corepkgs/unpack-channel.nix
Eelco Dolstra 045708db43 Make <nix/unpack-channel.nix> a builtin builder
This was the last function using a shell script, so this allows us to
get rid of tar, coreutils, bash etc.
2019-11-26 22:07:28 +01:00

13 lines
203 B
Nix

{ name, channelName, src }:
derivation {
builder = "builtin:unpack-channel";
system = "builtin";
inherit name channelName src;
# No point in doing this remotely.
preferLocalBuild = true;
}