blob: 5e6ccf23fd474386279490aaa4cf4b2b3013a241 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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}";
}
|