From e350003667eec965200228fb481a61ce8a0679f5 Mon Sep 17 00:00:00 2001 From: Antono Vasiljev Date: Fri, 22 Jun 2012 21:30:44 +0300 Subject: [PATCH] Fix url for guile-lint (geocities is dead now) It doesn't fix build though... --- pkgs/development/tools/guile/guile-lint/default.nix | 5 ++--- 1 file 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"; }; }