nixpkgs/pkgs/development/libraries/ncurses/default.nix
Eelco Dolstra bdabd66a46 * Install ncurses header files in $out/include, not
$out/include/ncurses.  This simplifies many builders.

svn path=/nixpkgs/trunk/; revision=4008
2005-10-04 14:24:19 +00:00

11 lines
229 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ncurses-5.4";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/ncurses-5.4.tar.gz;
md5 = "069c8880072060373290a4fefff43520";
};
}