066da4ab85
invariant by registering references through the manifest. * Added a test for nix-pull.
16 lines
352 B
Bash
16 lines
352 B
Bash
#! @shell@ -e
|
|
|
|
# !!! impure; fix this
|
|
export PATH=/bin:/usr/bin
|
|
|
|
echo "packing $path into $out..."
|
|
mkdir $out
|
|
dst=$out/$(basename $path).nar.bz2
|
|
@bindir@/nix-store --dump "$path" > tmp
|
|
|
|
@bzip2@ < tmp > $dst
|
|
|
|
@bindir@/nix-hash -vvvvv --flat --type sha1 --base32 tmp > $out/nar-hash
|
|
|
|
@bindir@/nix-hash --flat --type sha1 --base32 $dst > $out/narbz2-hash
|