03f1d1ecb5
* Made the dependencies on bzip2 and the shell explicit.
13 lines
286 B
Bash
13 lines
286 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" | @bzip2@ > $dst
|
|
|
|
md5=$(md5sum -b $dst | cut -c1-32)
|
|
if test $? != 0; then exit 1; fi
|
|
echo $md5 > $out/md5
|