nix-gh/corepkgs/unpack-channel.nix

12 lines
222 B
Nix
Raw Normal View History

with import <nix/config.nix>;
{ system, inputs }:
derivation {
name = "channels";
builder = shell;
args = [ "-e" ./unpack-channel.sh ];
inherit system inputs bzip2 tar tr;
PATH = "${nixBinDir}:${coreutils}";
}