* Get nix-push to work again.

* Fixed svn:ignore on externals/.
This commit is contained in:
Eelco Dolstra 2003-10-16 13:13:39 +00:00
parent c78bf11524
commit ab5e8767fa
2 changed files with 82 additions and 36 deletions

View file

@ -4,9 +4,9 @@ export PATH=/bin:/usr/bin
echo "packing $path into $out..."
mkdir $out || exit 1
tmp=$out/tmp
@bindir@/nix --dump --path "$path" | bzip2 > $out/tmp || exit 1
dst=$out/`basename $path`.nar.bz2
@bindir@/nix --dump "$path" | bzip2 > $dst || exit 1
md5=$(md5sum -b $tmp | cut -c1-32)
md5=$(md5sum -b $dst | cut -c1-32)
if test $? != 0; then exit 1; fi
mv $out/tmp $out/$md5-`basename $path`.nar.bz2 || exit 1
echo $md5 > $out/md5 || exit 1