diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-03-14T15·09+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-03-14T15·09+0000 |
commit | 8eff18cd4321f6282e3880da09010ccc9242962e (patch) | |
tree | 179ffe1cd9d27b43e6cd2ce60e348d5f116d609c /corepkgs | |
parent | 1562dfe9bad119e58296f35c1982fc539a97ac30 (diff) |
* Set NAR name to content hash; previous nix-push names were not
unique. * Drop `hashAlgo' attribute in manifests; prefix hashes with the hash algorithm instead.
Diffstat (limited to 'corepkgs')
-rw-r--r-- | corepkgs/nar/nar.sh.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/corepkgs/nar/nar.sh.in b/corepkgs/nar/nar.sh.in index ccf5b9e90a6a..d64cfd815dbe 100644 --- a/corepkgs/nar/nar.sh.in +++ b/corepkgs/nar/nar.sh.in @@ -5,7 +5,7 @@ export PATH=/bin:/usr/bin echo "packing $path into $out..." mkdir $out -dst=$out/$(basename $path).nar.bz2 +dst=$out/tmp.nar.bz2 @bindir@/nix-store --dump "$path" > tmp @bzip2@ < tmp > $dst @@ -13,3 +13,5 @@ dst=$out/$(basename $path).nar.bz2 @bindir@/nix-hash -vvvvv --flat --type sha1 --base32 tmp > $out/nar-hash @bindir@/nix-hash --flat --type sha1 --base32 $dst > $out/narbz2-hash + +mv $out/tmp.nar.bz2 $out/$(cat $out/narbz2-hash).nar.bz2 |