1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/corepkgs/nar/nar.sh.in

15 lines
392 B
Bash
Raw Normal View History

#! @shell@ -e
2003-07-18 03:42:57 -04:00
echo "packing $path into $out..."
2005-03-15 07:03:15 -05:00
@coreutils@/mkdir $out
dst=$out/tmp.nar.bz2
@bindir@/nix-store --dump "$path" > tmp
2003-07-18 03:42:57 -04:00
@bzip2@ < tmp > $dst
2004-11-08 06:32:10 -05:00
2005-03-15 06:12:48 -05:00
@bindir@/nix-hash -vvvvv --flat --type $hashAlgo --base32 tmp > $out/nar-hash
2005-03-15 06:12:48 -05:00
@bindir@/nix-hash --flat --type $hashAlgo --base32 $dst > $out/narbz2-hash
2005-03-15 07:03:15 -05:00
@coreutils@/mv $out/tmp.nar.bz2 $out/$(@coreutils@/cat $out/narbz2-hash).nar.bz2