guix/corepkgs/nar/nar.sh.in

13 lines
287 B
Bash
Raw Normal View History

2003-07-18 07:42:57 +00:00
#! /bin/sh
export PATH=/bin:/usr/bin
2003-07-18 07:42:57 +00:00
echo "packing $path into $out..."
mkdir $out || exit 1
dst=$out/`basename $path`.nar.bz2
2003-11-22 20:39:51 +00:00
@bindir@/nix-store --dump "$path" | bzip2 > $dst || exit 1
2003-07-18 07:42:57 +00:00
md5=$(md5sum -b $dst | cut -c1-32)
if test $? != 0; then exit 1; fi
echo $md5 > $out/md5 || exit 1