2019-01-08 22:18:45 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gmp-static, gperf, autoreconfHook, libpoly }:
|
2014-04-27 20:05:35 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "yices-${version}";
|
2018-11-02 23:49:09 +01:00
|
|
|
version = "2.6.1";
|
2014-04-27 20:05:35 +02:00
|
|
|
|
2019-01-08 22:18:45 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SRI-CSL";
|
|
|
|
repo = "yices2";
|
|
|
|
rev = "Yices-${version}";
|
|
|
|
sha256 = "04vf468spsh00jh7gj94cjnq8kjyfwy9l6r4z7l2pm0zgwkqgyhm";
|
2015-06-14 21:56:49 +02:00
|
|
|
};
|
2014-04-27 20:05:35 +02:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2017-11-05 18:36:21 +01:00
|
|
|
buildInputs = [ gmp-static gperf libpoly ];
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-static-gmp=${gmp-static.out}/lib/libgmp.a"
|
|
|
|
"--with-static-gmp-include-dir=${gmp-static.dev}/include"
|
|
|
|
"--enable-mcsat"
|
|
|
|
];
|
2014-04-27 20:05:35 +02:00
|
|
|
|
2016-10-26 16:52:29 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
2017-11-05 18:36:21 +01:00
|
|
|
# Usual shenanigans
|
|
|
|
patchPhase = ''patchShebangs tests/regress/check.sh'';
|
|
|
|
|
2017-07-07 06:31:38 +02:00
|
|
|
# Includes a fix for the embedded soname being libyices.so.2.5, but
|
2017-11-05 18:36:21 +01:00
|
|
|
# only installing the libyices.so.2.5.x file.
|
2018-07-13 01:46:28 +02:00
|
|
|
installPhase = let
|
2018-07-13 02:11:06 +02:00
|
|
|
ver_XdotY = builtins.concatStringsSep "." (stdenv.lib.take 2 (stdenv.lib.splitString "." version));
|
2018-07-13 01:46:28 +02:00
|
|
|
in ''
|
2017-07-07 06:31:38 +02:00
|
|
|
make install LDCONFIG=true
|
2018-07-13 01:52:10 +02:00
|
|
|
ln -sfr $out/lib/libyices.so.{${version},${ver_XdotY}}
|
2017-07-07 06:31:38 +02:00
|
|
|
'';
|
2016-10-26 16:47:50 +02:00
|
|
|
|
2016-10-30 19:34:42 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-30 17:05:14 +02:00
|
|
|
description = "A high-performance theorem prover and SMT solver";
|
2014-04-27 20:05:35 +02:00
|
|
|
homepage = "http://yices.csl.sri.com";
|
2017-09-02 11:06:22 +02:00
|
|
|
license = licenses.gpl3;
|
2017-11-05 18:36:21 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2019-01-08 22:18:45 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2014-04-27 20:05:35 +02:00
|
|
|
};
|
|
|
|
}
|