14 lines
392 B
Bash
14 lines
392 B
Bash
#! @shell@ -e
|
|
|
|
echo "packing $path into $out..."
|
|
@coreutils@/mkdir $out
|
|
dst=$out/tmp.nar.bz2
|
|
@bindir@/nix-store --dump "$path" > tmp
|
|
|
|
@bzip2@ < tmp > $dst
|
|
|
|
@bindir@/nix-hash -vvvvv --flat --type $hashAlgo --base32 tmp > $out/nar-hash
|
|
|
|
@bindir@/nix-hash --flat --type $hashAlgo --base32 $dst > $out/narbz2-hash
|
|
|
|
@coreutils@/mv $out/tmp.nar.bz2 $out/$(@coreutils@/cat $out/narbz2-hash).nar.bz2
|