2019-02-12 09:19:06 +00:00
|
|
|
{ fetchurl, stdenv, which, dune, ocamlPackages }:
|
2014-05-01 07:29:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "alt-ergo-${version}";
|
2019-02-12 09:19:06 +00:00
|
|
|
version = "2.3.0";
|
2014-05-01 07:29:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-08-13 11:26:30 +00:00
|
|
|
url = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
|
2014-05-01 07:29:42 +00:00
|
|
|
name = "${name}.tar.gz";
|
2019-02-12 09:19:06 +00:00
|
|
|
sha256 = "1ycr3ff0gacq1aqzs16n6swgfniwpim0m7rvhcam64kj0a80c6bz";
|
2014-05-01 07:29:42 +00:00
|
|
|
};
|
|
|
|
|
2019-02-12 09:19:06 +00:00
|
|
|
buildInputs = [ dune which ] ++ (with ocamlPackages; [
|
|
|
|
ocaml findlib camlzip lablgtk menhir num ocplib-simplex psmt2-frontend seq zarith
|
|
|
|
]);
|
|
|
|
|
|
|
|
preConfigure = "patchShebangs ./configure";
|
2014-05-01 07:29:42 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "High-performance theorem prover and SMT solver";
|
2017-08-13 11:26:30 +00:00
|
|
|
homepage = "https://alt-ergo.ocamlpro.com/";
|
2018-10-10 19:03:45 +00:00
|
|
|
license = stdenv.lib.licenses.ocamlpro_nc;
|
2016-01-04 14:40:10 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2014-05-01 07:29:42 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|