Merge pull request #55633 from vbgl/alt-ergo-2.3.0
alt-ergo: 2.2.0 -> 2.3.0
This commit is contained in:
commit
e4035c3e0e
@ -1,17 +1,20 @@
|
|||||||
{ fetchurl, stdenv, ocamlPackages }:
|
{ fetchurl, stdenv, which, dune, ocamlPackages }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "alt-ergo-${version}";
|
name = "alt-ergo-${version}";
|
||||||
version = "2.2.0";
|
version = "2.3.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
|
url = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
|
||||||
name = "${name}.tar.gz";
|
name = "${name}.tar.gz";
|
||||||
sha256 = "106zfgisq6qxr7dlk8z7gi68ly7qff4frn8wab2g8z2nkkwla92w";
|
sha256 = "1ycr3ff0gacq1aqzs16n6swgfniwpim0m7rvhcam64kj0a80c6bz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with ocamlPackages;
|
buildInputs = [ dune which ] ++ (with ocamlPackages; [
|
||||||
[ ocaml findlib camlzip ocamlgraph zarith lablgtk ocplib-simplex psmt2-frontend menhir num ];
|
ocaml findlib camlzip lablgtk menhir num ocplib-simplex psmt2-frontend seq zarith
|
||||||
|
]);
|
||||||
|
|
||||||
|
preConfigure = "patchShebangs ./configure";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "High-performance theorem prover and SMT solver";
|
description = "High-performance theorem prover and SMT solver";
|
||||||
|
@ -5,14 +5,14 @@ then throw "psmt2-frontend is not available for OCaml ${ocaml.version}"
|
|||||||
else
|
else
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.1";
|
version = "0.2";
|
||||||
name = "ocaml${ocaml.version}-psmt2-frontend-${version}";
|
name = "ocaml${ocaml.version}-psmt2-frontend-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Coquera";
|
owner = "Coquera";
|
||||||
repo = "psmt2-frontend";
|
repo = "psmt2-frontend";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0k7jlsbkdyg7hafmvynp0ik8xk7mfr00wz27vxn4ncnmp20yz4vn";
|
sha256 = "097zmbrx4gp2gnrxdmsm9lkkp5450gwi0blpxqy3833m6k5brx3n";
|
||||||
};
|
};
|
||||||
|
|
||||||
prefixKey = "-prefix ";
|
prefixKey = "-prefix ";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user