guix/corepkgs/nar/nar.sh.in

16 lines
338 B
Bash
Raw Normal View History

#! @shell@ -e
2003-07-18 07:42:57 +00:00
# !!! impure; fix this
export PATH=/bin:/usr/bin
2003-07-18 07:42:57 +00:00
echo "packing $path into $out..."
mkdir $out
dst=$out/$(basename $path).nar.bz2
@bindir@/nix-store --dump "$path" | @bzip2@ > $dst
2003-07-18 07:42:57 +00:00
2004-11-08 11:32:10 +00:00
if test "${PIPESTATUS[0]}" != "0"; then exit 1; fi
md5=$(md5sum -b $dst | cut -c1-32)
if test $? != 0; then exit 1; fi
echo $md5 > $out/md5