about summary refs log tree commit diff
path: root/corepkgs/nar/nar.sh.in
blob: d216685537772a94c2939ccedc83406d04e0155e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /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