summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-04-14 10:55:33 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-04-14 10:55:33 +0000
commit5c847a370a218390781296f1c63fead40a2e17e8 (patch)
treeab9a01a86b3572c342b55fad45892bd0ae5300c2 /pkgs/system/all-packages-generic.nix
parentf7561cf00ed8bd0c9278e363362e7f7ded5a990e (diff)
downloadnixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.tar
nixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.tar.gz
nixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.tar.bz2
nixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.tar.lz
nixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.tar.xz
nixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.tar.zst
nixpkgs-5c847a370a218390781296f1c63fead40a2e17e8.zip
* `fetchsvn' now requires the MD5 hash (as computed by `nix-hash') of
  the tree being fetched from a Subversion repository.  The revision
  number is now optional (and defaults to HEAD).

  This makes `fetchsvn' more pure.  First, a URL/revision tuple does
  not uniquely identify a file resource, since the repository itself
  might change.  Second, `svn:external' attributes can cause arbitrary
  resources to be exported.

  A script `nix-prefetch-svn' has been provided to determine the hash
  of a URL.

svn path=/nixpkgs/trunk/; revision=938
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 308a634e735..552f674d3f4 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -22,7 +22,7 @@ rec {
   };
 
   fetchsvn = (import ../build-support/fetchsvn) {
-    inherit stdenv subversion;
+    inherit stdenv subversion nix;
   };