forked from lix-project/lix
6f0c6e20e0
This doesn't work anymore if the "strict" chroot mode is enabled. Instead, add Nix's store path as a dependency. This ensures that its closure is present in the chroot.
42 lines
929 B
Nix
42 lines
929 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
|
|
mv * $out/$channelName
|
|
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;
|
|
}
|