2012-05-28 20:53:17 +00:00
|
|
|
# - coqide compilation can be disabled by setting lablgtk to null;
|
2008-06-04 15:10:05 +00:00
|
|
|
|
2014-09-28 11:27:08 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, writeText, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
|
2009-11-02 11:44:27 +00:00
|
|
|
|
2014-09-28 11:27:08 +00:00
|
|
|
let
|
2015-04-14 18:07:57 +00:00
|
|
|
version = "8.4pl6";
|
2014-09-28 11:27:08 +00:00
|
|
|
coq-version = "8.4";
|
2012-05-28 20:53:17 +00:00
|
|
|
buildIde = lablgtk != null;
|
|
|
|
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
|
2009-11-02 11:44:27 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-08-05 18:44:42 +00:00
|
|
|
name = "coq-${version}";
|
2008-06-04 15:10:05 +00:00
|
|
|
|
2014-09-28 11:27:08 +00:00
|
|
|
inherit coq-version;
|
|
|
|
inherit ocaml camlp5;
|
|
|
|
|
2008-06-04 15:10:05 +00:00
|
|
|
src = fetchurl {
|
2013-06-14 16:16:52 +00:00
|
|
|
url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz";
|
2015-04-14 18:07:57 +00:00
|
|
|
sha256 = "1mpbj4yf36kpjg2v2sln12i8dzqn8rag6fd07hslj2lpm4qs4h55";
|
2008-06-04 15:10:05 +00:00
|
|
|
};
|
|
|
|
|
2012-08-19 05:01:30 +00:00
|
|
|
buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];
|
2008-06-04 15:10:05 +00:00
|
|
|
|
2012-08-19 05:01:30 +00: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 = ''
|
|
|
|
configureFlagsArray=(
|
2012-05-28 20:53:17 +00:00
|
|
|
-opt
|
2010-12-20 10:32:22 +00:00
|
|
|
-camldir ${ocaml}/bin
|
|
|
|
-camlp5dir $(ocamlfind query camlp5)
|
2012-05-28 20:53:17 +00:00
|
|
|
${ideFlags}
|
2010-12-20 10:32:22 +00:00
|
|
|
)
|
|
|
|
'';
|
2009-11-02 11:44:27 +00:00
|
|
|
|
2012-08-19 05:01:30 +00:00
|
|
|
prefixKey = "-prefix ";
|
2008-06-04 15:10:05 +00:00
|
|
|
|
2012-08-19 05:01:30 +00:00
|
|
|
buildFlags = "revision coq coqide";
|
2010-05-18 13:40:19 +00:00
|
|
|
|
2014-09-28 11:27:08 +00:00
|
|
|
setupHook = writeText "setupHook.sh" ''
|
|
|
|
addCoqPath () {
|
|
|
|
if test -d "''$1/lib/coq/${coq-version}/user-contrib"; then
|
|
|
|
export COQPATH="''${COQPATH}''${COQPATH:+:}''$1/lib/coq/${coq-version}/user-contrib/"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
envHooks=(''${envHooks[@]} addCoqPath)
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00: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";
|
2014-09-28 11:27:08 +00:00
|
|
|
license = licenses.lgpl21;
|
2014-11-06 19:40:20 +00:00
|
|
|
branch = coq-version;
|
2014-09-28 11:27:08 +00:00
|
|
|
maintainers = with maintainers; [ roconnor thoughtpolice vbgl ];
|
|
|
|
platforms = platforms.unix;
|
2009-11-02 11:44:27 +00:00
|
|
|
};
|
|
|
|
}
|