summary refs log tree commit diff
path: root/pkgs/applications/misc/hello
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-02-15 14:44:19 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-02-15 14:44:19 +0000
commite42507d1825b1536f6c6bb486ec8c17f80da4d01 (patch)
tree25fce0d5f602a29525cca5e344de5d8fd3223715 /pkgs/applications/misc/hello
parente5c1afb9c19aa1df33f8ff77660356df8c40bdd7 (diff)
downloadnixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.tar
nixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.tar.gz
nixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.tar.bz2
nixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.tar.lz
nixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.tar.xz
nixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.tar.zst
nixlib-e42507d1825b1536f6c6bb486ec8c17f80da4d01.zip
* Move tarballs to catamaran so that we are no longer dependent on a
  gazillion different servers.  Resurrected some 25 missing files.

svn path=/nixpkgs/trunk/; revision=2237
Diffstat (limited to 'pkgs/applications/misc/hello')
-rw-r--r--pkgs/applications/misc/hello/ex-1/default.nix2
-rw-r--r--pkgs/applications/misc/hello/ex-2/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/hello/ex-1/default.nix b/pkgs/applications/misc/hello/ex-1/default.nix
index ac127af6ce51..de2454cf1e35 100644
--- a/pkgs/applications/misc/hello/ex-1/default.nix
+++ b/pkgs/applications/misc/hello/ex-1/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation {
   name = "hello-2.1.1";
   builder = ./builder.sh;
   src = fetchurl {
-    url = ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz;
+    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/hello-2.1.1.tar.gz;
     md5 = "70c9ccf9fac07f762c24f2df2290784d";
   };
   inherit perl;
diff --git a/pkgs/applications/misc/hello/ex-2/default.nix b/pkgs/applications/misc/hello/ex-2/default.nix
index 017ccf617ed5..48931d8654ca 100644
--- a/pkgs/applications/misc/hello/ex-2/default.nix
+++ b/pkgs/applications/misc/hello/ex-2/default.nix
@@ -3,7 +3,7 @@
 stdenv.mkDerivation {
   name = "hello-2.1.1";
   src = fetchurl {
-    url = ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz;
+    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/hello-2.1.1.tar.gz;
     md5 = "70c9ccf9fac07f762c24f2df2290784d";
   };
   buildInputs = [perl];