blob: eba957dff4e7d4e37b6be9826e5cb0b70443d4ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
with import <nix/config.nix>;
{ name, src }:
derivation {
system = builtins.currentSystem;
builder = shell;
args = [ "-e" ./unpack-channel.sh ];
inherit name src bzip2 tar tr;
PATH = "${nixBinDir}:${coreutils}";
}
|