added ncurses support to ocaml

svn path=/nixpkgs/trunk/; revision=8457
This commit is contained in:
Martin Bravenboer 2007-03-28 17:15:03 +00:00
parent 7ae637007b
commit f92b856311
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, x11}:
{stdenv, fetchurl, x11, ncurses}:
stdenv.mkDerivation {
name = "ocaml-3.09.1";
@ -12,4 +12,5 @@ stdenv.mkDerivation {
configureFlags = ["-no-tk" "-x11lib" x11];
buildFlags = ["world" "bootstrap" "opt"];
checkTarget = ["opt.opt"];
buildInputs = [x11 ncurses];
}

View File

@ -780,7 +780,7 @@ rec {
};
ocaml = import ../development/compilers/ocaml {
inherit fetchurl stdenv x11;
inherit fetchurl stdenv x11 ncurses;
};
ocaml3080 = import ../development/compilers/ocaml/ocaml-3.08.0.nix {