mirror of
https://github.com/NixOS/nix.git
synced 2024-10-31 22:30:52 +00:00
f72206b736
unpack-channel.nix fails if the tarball contains a directory named the same as the channel: mv: cannot move 'nixpkgs' to a subdirectory of itself, '.../nixpkgs' This commit fixes that by not moving the directory if it already has the correct name.
44 lines
977 B
Nix
44 lines
977 B
Nix
with import <nix/config.nix>;
|
|
|
|
let
|
|
|
|
builder = builtins.toFile "unpack-channel.sh"
|
|
''
|
|
mkdir $out
|
|
cd $out
|
|
xzpat="\.xz\$"
|
|
gzpat="\.gz\$"
|
|
if [[ "$src" =~ $xzpat ]]; then
|
|
${xz} -d < $src | ${tar} xf - ${tarFlags}
|
|
elif [[ "$src" =~ $gzpat ]]; then
|
|
${gzip} -d < $src | ${tar} xf - ${tarFlags}
|
|
else
|
|
${bzip2} -d < $src | ${tar} xf - ${tarFlags}
|
|
fi
|
|
if [ * != $channelName ]; then
|
|
mv * $out/$channelName
|
|
fi
|
|
if [ -n "$binaryCacheURL" ]; then
|
|
mkdir $out/binary-caches
|
|
echo -n "$binaryCacheURL" > $out/binary-caches/$channelName
|
|
fi
|
|
'';
|
|
|
|
in
|
|
|
|
{ name, channelName, src, binaryCacheURL ? "" }:
|
|
|
|
derivation {
|
|
system = builtins.currentSystem;
|
|
builder = shell;
|
|
args = [ "-e" builder ];
|
|
inherit name channelName src binaryCacheURL;
|
|
|
|
PATH = "${nixBinDir}:${coreutils}";
|
|
|
|
# No point in doing this remotely.
|
|
preferLocalBuild = true;
|
|
|
|
inherit chrootDeps;
|
|
}
|