2012-01-03 02:51:38 +01:00
|
|
|
with import <nix/config.nix>;
|
|
|
|
|
2012-08-01 22:34:17 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
builder = builtins.toFile "unpack-channel.sh"
|
|
|
|
''
|
|
|
|
mkdir $out
|
|
|
|
cd $out
|
|
|
|
${bzip2} -d < $src | ${tar} xf -
|
|
|
|
mv * $out/$channelName
|
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
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;
|
2012-08-01 22:34:17 +02:00
|
|
|
args = [ "-e" builder ];
|
|
|
|
inherit name channelName src;
|
|
|
|
|
2012-01-03 02:51:38 +01:00
|
|
|
PATH = "${nixBinDir}:${coreutils}";
|
2012-08-01 22:34:17 +02:00
|
|
|
|
2012-04-26 16:52:08 +02:00
|
|
|
# No point in doing this remotely.
|
|
|
|
preferLocalBuild = true;
|
2012-05-10 04:14:36 +02:00
|
|
|
|
|
|
|
# Don't build in a chroot because Nix's dependencies may not be there.
|
|
|
|
__noChroot = true;
|
2012-01-03 02:51:38 +01:00
|
|
|
}
|