3
0
Fork 0
forked from mirrors/nixpkgs

update to 1.2.5

svn path=/nixpkgs/trunk/; revision=5538
This commit is contained in:
Armijn Hemel 2006-06-29 11:57:17 +00:00
parent 9a67a5ca5a
commit a96763545d

View file

@ -1,10 +1,12 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "nano-1.2.4";
name = "nano-1.2.5";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/nano-1.2.4.tar.gz;
md5 = "2c513310ec5e8b63abaecaf48670ac7a";
url = http://www.nano-editor.org/dist/v1.2/nano-1.2.5.tar.gz;
md5 = "f2b3efbf1cf356d736740d531b6b22c4";
};
buildInputs = [ncurses];
}