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