2012-01-03 02:51:38 +01:00
|
|
|
with import <nix/config.nix>;
|
|
|
|
|
2012-04-14 21:05:28 +02:00
|
|
|
{ name, channelName, src }:
|
2012-01-03 02:51:38 +01:00
|
|
|
|
|
|
|
derivation {
|
2012-04-14 18:38:52 +02:00
|
|
|
system = builtins.currentSystem;
|
2012-01-03 02:51:38 +01:00
|
|
|
builder = shell;
|
|
|
|
args = [ "-e" ./unpack-channel.sh ];
|
2012-04-14 21:05:28 +02:00
|
|
|
inherit name channelName src bzip2 tar tr;
|
2012-01-03 02:51:38 +01:00
|
|
|
PATH = "${nixBinDir}:${coreutils}";
|
2012-04-26 16:52:08 +02:00
|
|
|
# No point in doing this remotely.
|
|
|
|
preferLocalBuild = true;
|
2012-01-03 02:51:38 +01:00
|
|
|
}
|