diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-22T21·14+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-22T21·14+0000 |
commit | 3a2c3f0cf265075b130d9d2a25b9c8334c560b33 (patch) | |
tree | 5647390d868e6ea2607d065974ec932e5dcb47f1 /scripts/nix-prefetch-url.in | |
parent | eda2c3c2537562e3b18c02a47b19e47ba3d37598 (diff) |
* Support for fixed-output hashes over directory trees (i.e., over the
NAR dump of the path).
Diffstat (limited to 'scripts/nix-prefetch-url.in')
-rw-r--r-- | scripts/nix-prefetch-url.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/nix-prefetch-url.in b/scripts/nix-prefetch-url.in index 409c3f992d91..b33aa8a850bd 100644 --- a/scripts/nix-prefetch-url.in +++ b/scripts/nix-prefetch-url.in @@ -25,7 +25,7 @@ if test -z "$hash"; then tmpPath1=/tmp/nix-prefetch-url-$$ # !!! security? fi - # Perform the checkout. + # Perform the download. @curl@ --fail --location --max-redirs 20 "$url" > $tmpPath1 # Compute the hash. @@ -47,7 +47,7 @@ storeExpr=$( \ | @bindir@/nix-instantiate -) # Realise it. -finalPath=$(@bindir@/nix-store -q --force-realise $storeExpr) +finalPath=$(@bindir@/nix-store -r $storeExpr) if ! test -n "$QUIET"; then echo "path is $finalPath" >&2; fi |