2021-10-14 00:43:12 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cudd, gmp-static, gperf, autoreconfHook, libpoly }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "yices";
|
2021-10-14 00:43:12 +00:00
|
|
|
version = "2.6.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SRI-CSL";
|
|
|
|
repo = "yices2";
|
|
|
|
rev = "Yices-${version}";
|
2021-10-14 00:43:12 +00:00
|
|
|
sha256 = "01fi818lbkwilfcf1dz2dpxkcc1kh8ls0sl5aynyx9pwfn2v03zl";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2021-10-14 00:43:12 +00:00
|
|
|
buildInputs = [ cudd gmp-static gperf libpoly ];
|
2020-04-24 23:36:52 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-static-gmp=${gmp-static.out}/lib/libgmp.a"
|
|
|
|
"--with-static-gmp-include-dir=${gmp-static.dev}/include"
|
|
|
|
"--enable-mcsat"
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
# Usual shenanigans
|
2021-02-05 17:12:51 +00:00
|
|
|
patchPhase = "patchShebangs tests/regress/check.sh";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Includes a fix for the embedded soname being libyices.so.2.5, but
|
|
|
|
# only installing the libyices.so.2.5.x file.
|
|
|
|
installPhase = let
|
2021-01-17 00:15:33 +00:00
|
|
|
ver_XdotY = lib.versions.majorMinor version;
|
2020-04-24 23:36:52 +00:00
|
|
|
in ''
|
|
|
|
make install LDCONFIG=true
|
|
|
|
ln -sfr $out/lib/libyices.so.{${version},${ver_XdotY}}
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A high-performance theorem prover and SMT solver";
|
|
|
|
homepage = "http://yices.csl.sri.com";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|