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
|
|
|
|
2004-12-13 18:56:18 +02:00
|
|
|
narHash=$(md5sum -b tmp | cut -c1-32)
|
2003-07-22 00:34:56 +03:00
|
|
|
if test $? != 0; then exit 1; fi
|
2004-12-13 18:56:18 +02:00
|
|
|
echo $narHash > $out/nar-hash
|
|
|
|
|
|
|
|
narbz2Hash=$(md5sum -b $dst | cut -c1-32)
|
|
|
|
if test $? != 0; then exit 1; fi
|
|
|
|
echo $narbz2Hash > $out/narbz2-hash
|