-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocaml-z3.nix
37 lines (28 loc) · 925 Bytes
/
ocaml-z3.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, lib, ocaml, findlib, zarith, num, z3 }:
if lib.versionOlder ocaml.version "4.07"
then throw "z3 is not available for OCaml ${ocaml.version}"
else
let z3-with-ocaml = (z3.override {
ocamlBindings = true;
inherit ocaml findlib zarith;
}).overrideAttrs (old: {
buildInputs = old.buildInputs ++ [ num ];
}); in
stdenv.mkDerivation {
pname = "ocaml${ocaml.version}-z3";
inherit (z3-with-ocaml) version;
dontUnpack = true;
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
'';
nativeBuildInputs = [ findlib ];
propagatedBuildInputs = [ zarith num ];
strictDeps = false;
meta = z3.meta // {
description = "Z3 Theorem Prover (OCaml API)";
};
}