about summary refs log tree commit diff
path: root/pkgs/applications/editors/nvi
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-12-15 09:39:30 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-12-15 09:39:30 +0000
commit99831841f0bc4775dd824e0df66f20a201fdf600 (patch)
tree75d9e326c2c08d3db728a99a43ef2e94146e407d /pkgs/applications/editors/nvi
parentae0da179c7ad957a412d18412b2e0692ccb93cdf (diff)
downloadnixlib-99831841f0bc4775dd824e0df66f20a201fdf600.tar
nixlib-99831841f0bc4775dd824e0df66f20a201fdf600.tar.gz
nixlib-99831841f0bc4775dd824e0df66f20a201fdf600.tar.bz2
nixlib-99831841f0bc4775dd824e0df66f20a201fdf600.tar.lz
nixlib-99831841f0bc4775dd824e0df66f20a201fdf600.tar.xz
nixlib-99831841f0bc4775dd824e0df66f20a201fdf600.tar.zst
nixlib-99831841f0bc4775dd824e0df66f20a201fdf600.zip
Updating the urls where to get nvi from. The previous did not work anymore.
I took some from the list provided by:
http://dir.filewatcher.com/d/Perl-CPAN/misc/nvi-1.79.tar.gz.1295401.html

svn path=/nixpkgs/trunk/; revision=25140
Diffstat (limited to 'pkgs/applications/editors/nvi')
-rw-r--r--pkgs/applications/editors/nvi/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/editors/nvi/default.nix b/pkgs/applications/editors/nvi/default.nix
index f14ffe51f2ba..c759f977b0d4 100644
--- a/pkgs/applications/editors/nvi/default.nix
+++ b/pkgs/applications/editors/nvi/default.nix
@@ -4,7 +4,11 @@ stdenv.mkDerivation rec {
   name = "nvi-1.79";
 
   src = fetchurl {
-    url = "https://sites.google.com/a/bostic.com/external/files/nvi-1.79.tar.gz?attredirects=0";
+    urls =
+      [ "ftp://ftp.eenet.ee/pub/cpan/src/misc/nvi-1.79.tar.gz"
+        "ftp://ftp.saintjoe.edu/pub/CPAN/src/misc/nvi-1.79.tar.gz"
+        "ftp://ftp.free.fr/.mirrors1/ftp.netbsd.org/packages/distfiles/nvi-1.79.tar.gz"
+      ];
     sha256 = "0cvf56rbylz7ksny6g2256sjg8yrsxrmbpk82r64rhi53sm8fnvm";
   };