2004-10-06 06:17:06 -07:00
|
|
|
{stdenv, fetchurl, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nano-1.2.4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-02-15 06:44:19 -08:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/nano-1.2.4.tar.gz;
|
2004-10-06 06:17:06 -07:00
|
|
|
md5 = "2c513310ec5e8b63abaecaf48670ac7a";
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit ncurses;
|
|
|
|
buildInputs = [ncurses];
|
|
|
|
}
|