guix/corepkgs/nar/nar.sh.in

18 lines
396 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/tmp.nar.bz2
@bindir@/nix-store --dump "$path" > tmp
2003-07-18 07:42:57 +00:00
@bzip2@ < tmp > $dst
2004-11-08 11:32:10 +00:00
@bindir@/nix-hash -vvvvv --flat --type sha1 --base32 tmp > $out/nar-hash
@bindir@/nix-hash --flat --type sha1 --base32 $dst > $out/narbz2-hash
mv $out/tmp.nar.bz2 $out/$(cat $out/narbz2-hash).nar.bz2