2004-04-06 11:18:51 +03:00
|
|
|
#! @shell@ -e
|
2003-07-18 10:42:57 +03:00
|
|
|
|
2004-04-06 11:18:51 +03:00
|
|
|
# !!! impure; fix this
|
2003-08-28 13:10:12 +03:00
|
|
|
export PATH=/bin:/usr/bin
|
|
|
|
|
2003-07-18 10:42:57 +03:00
|
|
|
echo "packing $path into $out..."
|
2004-04-06 11:18:51 +03:00
|
|
|
mkdir $out
|
|
|
|
dst=$out/$(basename $path).nar.bz2
|
2004-12-13 18:56:18 +02:00
|
|
|
@bindir@/nix-store --dump "$path" > 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-01-25 19:08:52 +02:00
|
|
|
@bindir@/nix-hash -vvvvv --flat --type sha1 --base32 tmp > $out/nar-hash
|
2004-12-13 18:56:18 +02:00
|
|
|
|
2005-01-25 19:08:52 +02:00
|
|
|
@bindir@/nix-hash --flat --type sha1 --base32 $dst > $out/narbz2-hash
|