2004-04-06 08:18:51 +00:00
|
|
|
#! @shell@ -e
|
2003-07-18 07:42:57 +00:00
|
|
|
|
2004-04-06 08:18:51 +00:00
|
|
|
# !!! impure; fix this
|
2003-08-28 10:10:12 +00:00
|
|
|
export PATH=/bin:/usr/bin
|
|
|
|
|
2003-07-18 07:42:57 +00:00
|
|
|
echo "packing $path into $out..."
|
2004-04-06 08:18:51 +00:00
|
|
|
mkdir $out
|
|
|
|
dst=$out/$(basename $path).nar.bz2
|
|
|
|
@bindir@/nix-store --dump "$path" | @bzip2@ > $dst
|
2003-07-18 07:42:57 +00:00
|
|
|
|
2003-10-16 13:13:39 +00:00
|
|
|
md5=$(md5sum -b $dst | cut -c1-32)
|
2003-07-21 21:34:56 +00:00
|
|
|
if test $? != 0; then exit 1; fi
|
2004-04-06 08:18:51 +00:00
|
|
|
echo $md5 > $out/md5
|