nix-gh/corepkgs/nar.nix

36 lines
704 B
Nix
Raw Normal View History

with import <nix/config.nix>;
let
builder = builtins.toFile "nar.sh"
''
export PATH=${nixBinDir}:${coreutils}
echo "packing $storePath..."
mkdir $out
dst=$out/tmp.nar.xz
set -o pipefail
nix-store --dump "$storePath" | ${xz} -9 > $dst
hash=$(nix-hash --flat --type $hashAlgo --base32 $dst)
echo -n $hash > $out/nar-compressed-hash
mv $dst $out/$hash.nar.xz
'';
in
2012-04-14 18:48:11 +02:00
{ storePath, hashAlgo }:
derivation {
name = "nar";
2012-04-14 18:48:11 +02:00
system = builtins.currentSystem;
builder = shell;
args = [ "-e" builder ];
2012-04-14 18:48:11 +02:00
inherit storePath hashAlgo;
# Don't build in a chroot because Nix's dependencies may not be there.
__noChroot = true;
}