2004-04-06 08:18:51 +00:00
|
|
|
#! @shell@ -e
|
2003-07-18 07:42:57 +00:00
|
|
|
|
|
|
|
echo "packing $path into $out..."
|
2005-03-15 12:03:15 +00:00
|
|
|
@coreutils@/mkdir $out
|
2005-03-14 15:09:53 +00:00
|
|
|
dst=$out/tmp.nar.bz2
|
2004-12-13 16:56:18 +00:00
|
|
|
@bindir@/nix-store --dump "$path" > tmp
|
2003-07-18 07:42:57 +00:00
|
|
|
|
2004-12-13 16:56:18 +00:00
|
|
|
@bzip2@ < tmp > $dst
|
2004-11-08 11:32:10 +00:00
|
|
|
|
2005-03-15 11:12:48 +00:00
|
|
|
@bindir@/nix-hash -vvvvv --flat --type $hashAlgo --base32 tmp > $out/nar-hash
|
2004-12-13 16:56:18 +00:00
|
|
|
|
2005-03-15 11:12:48 +00:00
|
|
|
@bindir@/nix-hash --flat --type $hashAlgo --base32 $dst > $out/narbz2-hash
|
2005-03-14 15:09:53 +00:00
|
|
|
|
2005-03-15 12:03:15 +00:00
|
|
|
@coreutils@/mv $out/tmp.nar.bz2 $out/$(@coreutils@/cat $out/narbz2-hash).nar.bz2
|