* Descriptor templates for the Pan newsreader and all its

dependencies.
This commit is contained in:
Eelco Dolstra 2003-03-20 22:25:01 +00:00
parent cadc3852e4
commit 4c43711810
17 changed files with 157 additions and 0 deletions

18
test/register Executable file
View file

@ -0,0 +1,18 @@
#! /bin/sh
nix init
root=/home/eelco/Dev/nix/test
cd $root/tmpl
if ! nix-instantiate $root/descr $root/tmpl/*.nix; then
exit 1;
fi
for i in $root/dist/*; do nix regfile $i; done
for i in $root/descr/*; do
md5sum $i
nix regfile $i
done