about summary refs log tree commit diff
path: root/pkgs/development/tools/guile
diff options
context:
space:
mode:
authorAntono Vasiljev <self@antono.info>2012-06-22 21:30:44 +0300
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-06-22 14:36:11 -0400
commite350003667eec965200228fb481a61ce8a0679f5 (patch)
tree48a34f746ad4181f14c7d94c961698cd3be6b2b7 /pkgs/development/tools/guile
parentd3cdacab038052eda3bc90828d74dc1d63d3c1a2 (diff)
downloadnixlib-e350003667eec965200228fb481a61ce8a0679f5.tar
nixlib-e350003667eec965200228fb481a61ce8a0679f5.tar.gz
nixlib-e350003667eec965200228fb481a61ce8a0679f5.tar.bz2
nixlib-e350003667eec965200228fb481a61ce8a0679f5.tar.lz
nixlib-e350003667eec965200228fb481a61ce8a0679f5.tar.xz
nixlib-e350003667eec965200228fb481a61ce8a0679f5.tar.zst
nixlib-e350003667eec965200228fb481a61ce8a0679f5.zip
Fix url for guile-lint (geocities is dead now)
It doesn't fix build though...
Diffstat (limited to 'pkgs/development/tools/guile')
-rw-r--r--pkgs/development/tools/guile/guile-lint/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/tools/guile/guile-lint/default.nix b/pkgs/development/tools/guile/guile-lint/default.nix
index 18625a3ec313..156def09187a 100644
--- a/pkgs/development/tools/guile/guile-lint/default.nix
+++ b/pkgs/development/tools/guile/guile-lint/default.nix
@@ -3,8 +3,7 @@
 stdenv.mkDerivation rec {
   name = "guile-lint-14";
   src = fetchurl {
-    url = "http://www.geocities.com/user42_kevin/guile-lint/"
-            + name + ".tar.bz2.bin";
+    url = "http://download.tuxfamily.org/user42/" + name + ".tar.bz2";
     sha256 = "5bfcf7a623338b2ef81ac097e3e136eaf32856dd0730b7eeaff3161067b5d0be";
   };
 
@@ -21,7 +20,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Guile-Lint checks syntax and semantics in a Guile program or module";
-    homepage = http://www.geocities.com/user42_kevin/guile-lint/index.html;
+    homepage = http://user42.tuxfamily.org/guile-lint/index.html;
     license = "GPL";
   };
 }