about summary refs log tree commit diff
path: root/corepkgs/nar/nar.sh.in
blob: 8d3fdb51b283a7c4066169df0eddf284547ed184 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

export PATH=/bin:/usr/bin

echo "packing $path into $out..."
mkdir $out || exit 1
dst=$out/`basename $path`.nar.bz2
@bindir@/nix-store --dump "$path" | bzip2 > $dst || exit 1

md5=$(md5sum -b $dst | cut -c1-32)
if test $? != 0; then exit 1; fi
echo $md5 > $out/md5 || exit 1