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