ocamlPackages.z3: init at 4.8.9

This commit is contained in:
Vincent Laporte
2020-09-30 22:03:17 +02:00
committed by Vincent Laporte
parent 0c56c7357f
commit cc739e1c67
3 changed files with 49 additions and 2 deletions
@@ -0,0 +1,29 @@
{ stdenv, ocaml, findlib, zarith, z3 }:
let z3-with-ocaml = z3.override {
ocamlBindings = true;
inherit ocaml findlib zarith;
}; in
stdenv.mkDerivation {
pname = "ocaml${ocaml.version}-z3";
inherit (z3-with-ocaml) version;
phases = [ "installPhase" "fixupPhase" ];
installPhase = ''
runHook preInstall
mkdir -p $OCAMLFIND_DESTDIR
cp -r ${z3-with-ocaml.ocaml}/lib/ocaml/${ocaml.version}/site-lib/stublibs $OCAMLFIND_DESTDIR
cp -r ${z3-with-ocaml.ocaml}/lib/ocaml/${ocaml.version}/site-lib/Z3 $OCAMLFIND_DESTDIR/z3
runHook postInstall
'';
buildInputs = [ findlib ];
propagatedBuildInputs = [ zarith ];
meta = z3.meta // {
description = "Z3 Theorem Prover (OCaml API)";
};
}