nixpkgs/pkgs/development/libraries/ncurses/default.nix
Eelco Dolstra 287edecf42 * Added gperf, texinfo, ncurses.
* Started moving the gcc wrapper stuff out of stdenv.
* Added octavefront and rna.

svn path=/nixpkgs/trunk/; revision=814
2004-03-05 10:13:23 +00:00

13 lines
265 B
Nix

{stdenv, fetchurl}:
derivation {
name = "ncurses-5.4";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.4.tar.gz;
md5 = "069c8880072060373290a4fefff43520";
};
inherit stdenv;
}