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