about summary refs log tree commit diff
path: root/pkgs/tools/misc/findutils/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/findutils/default.nix')
-rw-r--r--pkgs/tools/misc/findutils/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix
index 80f5fbfc5d70..e9d707d74c7b 100644
--- a/pkgs/tools/misc/findutils/default.nix
+++ b/pkgs/tools/misc/findutils/default.nix
@@ -1,14 +1,14 @@
 {stdenv, fetchurl, coreutils}:
 
 stdenv.mkDerivation {
-  name = "findutils-4.2.27";
+  name = "findutils-4.2.28";
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/findutils-4.2.27.tar.gz;
-    md5 = "f1e0ddf09f28f8102ff3b90f3b5bc920";
+    url = http://ftp.gnu.org/pub/gnu/findutils/findutils-4.2.28.tar.gz;
+    md5 = "f5fb3349354ee3d94fceb81dab5c71fd";
   };
   buildInputs = [coreutils];
   patches = [./findutils-path.patch]
-    # Note: the dietlibc is just to get findutils to compile.  The
-    # locate command probably won't work though.
+    # Note: the dietlibc patch is just to get findutils to compile.
+    # The locate command probably won't work though.
     ++ (if stdenv ? isDietLibC then [./dietlibc-hack.patch] else []);
 }