summary refs log tree commit diff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-07 18:13:03 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-07 18:13:03 +0000
commitce482ec1554168bb7ec906323cbf6c1b1c8ddf0e (patch)
treee3718a6708363400f9f4b3dde0056f00d1a054ed
parent046743311da41a4bcb5d84e116921b30d0d8939f (diff)
downloadnixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.tar
nixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.tar.gz
nixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.tar.bz2
nixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.tar.lz
nixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.tar.xz
nixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.tar.zst
nixpkgs-ce482ec1554168bb7ec906323cbf6c1b1c8ddf0e.zip
Adding a new url for netkit tftp, as the other is down.
svn path=/nixpkgs/trunk/; revision=32855
-rw-r--r--pkgs/tools/networking/netkit/tftp/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/networking/netkit/tftp/default.nix b/pkgs/tools/networking/netkit/tftp/default.nix
index 6b9763972df..fd6d6d51a92 100644
--- a/pkgs/tools/networking/netkit/tftp/default.nix
+++ b/pkgs/tools/networking/netkit/tftp/default.nix
@@ -4,7 +4,10 @@ stdenv.mkDerivation rec {
   name = "netkit-tftp-0.17";
 
   src = fetchurl {
-    url = "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${name}.tar.gz";
+    urls = [
+      "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${name}.tar.gz"
+      "http://ftp.cc.uoc.gr/mirrors/linux/ubuntu/packages/pool/universe/n/netkit-tftp/netkit-tftp_0.17.orig.tar.gz"
+    ];
     sha256 = "0kfibbjmy85r3k92cdchha78nzb6silkgn1zaq9g8qaf1l0w0hrs";
   };