mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
added ncurses support to ocaml
svn path=/nixpkgs/trunk/; revision=8457
This commit is contained in:
parent
7ae637007b
commit
f92b856311
@ -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];
|
||||
}
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user