1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-16 02:01:59 +02:00

If the (redirected) channel URL contains a version number, use it

This commit is contained in:
Eelco Dolstra 2012-04-14 21:05:28 +02:00
parent 1d0bafb74d
commit 0b5107c016
3 changed files with 10 additions and 4 deletions

View file

@ -1,11 +1,11 @@
with import <nix/config.nix>;
{ name, src }:
{ name, channelName, src }:
derivation {
system = builtins.currentSystem;
builder = shell;
args = [ "-e" ./unpack-channel.sh ];
inherit name src bzip2 tar tr;
inherit name channelName src bzip2 tar tr;
PATH = "${nixBinDir}:${coreutils}";
}

View file

@ -1,4 +1,4 @@
mkdir $out
cd $out
$bzip2 -d < $src | $tar xf -
mv * $out/$name
mv * $out/$channelName