c7bdb76fe4
* When pushing, put the hash in the file name so that the client can verify (proof-carrying file names?).
10 lines
270 B
Bash
10 lines
270 B
Bash
#! /bin/sh
|
|
|
|
echo "packing $path into $out..."
|
|
mkdir $out || exit 1
|
|
tmp=$out/tmp
|
|
@bindir@/nix --dump --path "$path" | bzip2 > $out/tmp || exit 1
|
|
|
|
md5=$(md5sum -b $tmp | cut -c1-32)
|
|
if test $? != 0; then exit 1; fi
|
|
mv $out/tmp $out/$md5-`basename $path`.nar.bz2 || exit 1
|