e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
14 lines
294 B
Nix
14 lines
294 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nano-1.2.4";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/nano-1.2.4.tar.gz;
|
|
md5 = "2c513310ec5e8b63abaecaf48670ac7a";
|
|
};
|
|
|
|
inherit ncurses;
|
|
buildInputs = [ncurses];
|
|
}
|