diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-25T17·08+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-25T17·08+0000 |
commit | 066da4ab852ebe4288536149824ea175dc36cad4 (patch) | |
tree | d9258a2d224a0574c0135cd799cb704fc8c25433 /corepkgs/nar/nar.sh.in | |
parent | c6290e42bc8890e2036013773a98e3551352c91a (diff) |
* Really fix the substitute mechanism, i.e., ensure the closure
invariant by registering references through the manifest. * Added a test for nix-pull.
Diffstat (limited to 'corepkgs/nar/nar.sh.in')
-rw-r--r-- | corepkgs/nar/nar.sh.in | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/corepkgs/nar/nar.sh.in b/corepkgs/nar/nar.sh.in index 11598e6a98f0..ccf5b9e90a6a 100644 --- a/corepkgs/nar/nar.sh.in +++ b/corepkgs/nar/nar.sh.in @@ -10,10 +10,6 @@ dst=$out/$(basename $path).nar.bz2 @bzip2@ < tmp > $dst -narHash=$(md5sum -b tmp | cut -c1-32) -if test $? != 0; then exit 1; fi -echo $narHash > $out/nar-hash +@bindir@/nix-hash -vvvvv --flat --type sha1 --base32 tmp > $out/nar-hash -narbz2Hash=$(md5sum -b $dst | cut -c1-32) -if test $? != 0; then exit 1; fi -echo $narbz2Hash > $out/narbz2-hash +@bindir@/nix-hash --flat --type sha1 --base32 $dst > $out/narbz2-hash |