about summary refs log tree commit diff
path: root/pkgs/tools/misc/findutils
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/findutils')
-rw-r--r--pkgs/tools/misc/findutils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix
index e9d707d74c7b..271ac8e7f00c 100644
--- a/pkgs/tools/misc/findutils/default.nix
+++ b/pkgs/tools/misc/findutils/default.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl, coreutils}:
 
 stdenv.mkDerivation {
-  name = "findutils-4.2.28";
+  name = "findutils-4.2.29";
   src = fetchurl {
-    url = http://ftp.gnu.org/pub/gnu/findutils/findutils-4.2.28.tar.gz;
-    md5 = "f5fb3349354ee3d94fceb81dab5c71fd";
+    url = ftp://ftp.nluug.nl/pub/gnu/findutils/findutils-4.2.29.tar.gz;
+    md5 = "24e76434ca74ba3c2c6ad621eb64e1ff";
   };
   buildInputs = [coreutils];
   patches = [./findutils-path.patch]