2012-05-28 21:53:17 +01:00
|
|
|
# - coqide compilation can be disabled by setting lablgtk to null;
|
2008-06-04 16:10:05 +01:00
|
|
|
|
2012-08-19 06:01:30 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
|
2009-11-02 11:44:27 +00:00
|
|
|
|
2012-05-28 21:53:17 +01:00
|
|
|
let
|
2014-05-13 03:17:00 +01:00
|
|
|
version = "8.4pl4";
|
2012-05-28 21:53:17 +01:00
|
|
|
buildIde = lablgtk != null;
|
|
|
|
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
|
2012-08-19 06:01:30 +01:00
|
|
|
idePath = if buildIde then ''
|
|
|
|
CAML_LD_LIBRARY_PATH=${lablgtk}/lib/ocaml/3.12.1/site-lib/stublibs
|
2012-05-28 21:53:17 +01:00
|
|
|
'' else "";
|
2009-11-02 11:44:27 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-08-05 19:44:42 +01:00
|
|
|
name = "coq-${version}";
|
2008-06-04 16:10:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-06-14 17:16:52 +01:00
|
|
|
url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz";
|
2014-05-13 03:17:00 +01:00
|
|
|
sha256 = "00bzf4kfbd0g279jrr8ynzvb9wqcly3wi577bkrxivhrg2msxhq6";
|
2008-06-04 16:10:05 +01:00
|
|
|
};
|
|
|
|
|
2012-08-19 06:01:30 +01:00
|
|
|
buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];
|
2008-06-04 16:10:05 +01:00
|
|
|
|
2012-08-19 06:01:30 +01:00
|
|
|
patches = [ ./configure.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
UNAME=$(type -tp uname)
|
|
|
|
RM=$(type -tp rm)
|
|
|
|
substituteInPlace configure --replace "/bin/uname" "$UNAME"
|
|
|
|
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
|
|
|
|
'';
|
2009-11-02 11:44:27 +00:00
|
|
|
|
2010-12-20 10:32:22 +00:00
|
|
|
preConfigure = ''
|
2012-08-19 06:01:30 +01:00
|
|
|
buildFlagsArray=(${idePath})
|
2010-12-20 10:32:22 +00:00
|
|
|
configureFlagsArray=(
|
2012-05-28 21:53:17 +01:00
|
|
|
-opt
|
2010-12-20 10:32:22 +00:00
|
|
|
-camldir ${ocaml}/bin
|
|
|
|
-camlp5dir $(ocamlfind query camlp5)
|
2012-05-28 21:53:17 +01:00
|
|
|
${ideFlags}
|
2010-12-20 10:32:22 +00:00
|
|
|
)
|
|
|
|
'';
|
2009-11-02 11:44:27 +00:00
|
|
|
|
2012-08-19 06:01:30 +01:00
|
|
|
prefixKey = "-prefix ";
|
2008-06-04 16:10:05 +01:00
|
|
|
|
2012-08-19 06:01:30 +01:00
|
|
|
buildFlags = "revision coq coqide";
|
2010-05-18 14:40:19 +01:00
|
|
|
|
2009-11-02 11:44:27 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Formal proof management system";
|
2009-11-02 11:44:27 +00:00
|
|
|
longDescription = ''
|
|
|
|
Coq is a formal proof management system. It provides a formal language
|
|
|
|
to write mathematical definitions, executable algorithms and theorems
|
|
|
|
together with an environment for semi-interactive development of
|
|
|
|
machine-checked proofs.
|
|
|
|
'';
|
|
|
|
homepage = "http://coq.inria.fr";
|
|
|
|
license = "LGPL";
|
2014-03-08 02:52:33 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ roconnor thoughtpolice ];
|
2014-05-05 06:58:23 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-11-02 11:44:27 +00:00
|
|
|
};
|
|
|
|
}
|