summary refs log tree commit diff
path: root/pkgs/misc/nix-unstable/nix-0.10pre5679.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/nix-unstable/nix-0.10pre5679.patch')
-rw-r--r--pkgs/misc/nix-unstable/nix-0.10pre5679.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/misc/nix-unstable/nix-0.10pre5679.patch b/pkgs/misc/nix-unstable/nix-0.10pre5679.patch
deleted file mode 100644
index 4d72c1989416..000000000000
--- a/pkgs/misc/nix-unstable/nix-0.10pre5679.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -ruN nix-0.10pre5679/scripts/nix-prefetch-url.in nix-0.10pre5679.new/scripts/nix-prefetch-url.in
---- nix-0.10pre5679/scripts/nix-prefetch-url.in	2006-07-11 13:24:20.000000000 +0200
-+++ nix-0.10pre5679.new/scripts/nix-prefetch-url.in	2006-08-01 11:54:02.000000000 +0200
-@@ -39,10 +39,10 @@
- 
-     tmpPath=/tmp/nix-prefetch-url-$$ # !!! security?
-     tmpFile=$tmpPath/$name
--    mkdir $tmpPath
-+    mkdir -p $NIX_ROOT/$tmpPath
- 
-     # Perform the download.
--    @curl@ --fail --location --max-redirs 20 "$url" > $tmpFile
-+    @curl@ --fail --location --max-redirs 20 "$url" > $NIX_ROOT/$tmpFile
- 
-     # Compute the hash.
-     hash=$(@bindir@/nix-hash --type "$hashType" $hashFormat --flat $tmpFile)
-@@ -51,7 +51,7 @@
-     # Add the downloaded file to the Nix store.
-     finalPath=$(@bindir@/nix-store --add-fixed "$hashType" $tmpFile)
- 
--    if test -n "$tmpPath"; then rm -rf $tmpPath || true; fi
-+    if test -n "$NIX_ROOT/$tmpPath"; then rm -rf $NIX_ROOT/$tmpPath || true; fi
- 
-     if test -n "$expHash" -a "$expHash" != "$hash"; then
-         echo "hash mismatch for URL \`$url'"