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.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix
index 69b9b777c4c5..812b0c78e2cd 100644
--- a/pkgs/tools/misc/findutils/default.nix
+++ b/pkgs/tools/misc/findutils/default.nix
@@ -3,12 +3,12 @@
 stdenv.mkDerivation {
   name = "findutils-4.2.30";
   src = fetchurl {
-    url = ftp://ftp.nluug.nl/pub/gnu/findutils/findutils-4.2.30.tar.gz;
+    url = mirror://gnu/findutils/findutils-4.2.30.tar.gz;
     sha256 = "1x1s0h1gf4hxh6xi6vq336sz8zsh4hvnsslc7607z41l82xrqjrl";
   };
   buildInputs = [coreutils];
+
   patches = [ ./findutils-path.patch ./change_echo_path.patch ]
-  
     # Note: the dietlibc patch is just to get findutils to compile.
     # The locate command probably won't work though.
     ++ stdenv.lib.optional (stdenv ? isDietLibC) ./dietlibc-hack.patch;