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