diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 19522f8fc0f..5cd0827847d 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, ncurses, gettext}: stdenv.mkDerivation { - name = "nano-1.2.5"; + name = "nano-2.0.2"; src = fetchurl { - url = http://nix.cs.uu.nl/dist/tarballs/nano-1.2.5.tar.gz; - md5 = "f2b3efbf1cf356d736740d531b6b22c4"; + url = ftp://ftp.nano-editor.org/pub/nano/v2.0/nano-2.0.2.tar.gz; + md5 = "38046476096530e19a7e805513c64108"; }; buildInputs = [ncurses gettext]; configureFlags = "--enable-tiny";