12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
19 rev = "Yices-${version}";
20 hash = "sha256-/sKyHkFW5I5kojNIRPEKojzTvfRZiyVIN5VlBIbAV7k=";
23 postPatch = "patchShebangs tests/regress/check.sh";
25 nativeBuildInputs = [ autoreconfHook ];
33 "--with-static-gmp=${gmp-static.out}/lib/libgmp.a"
34 "--with-static-gmp-include-dir=${gmp-static.dev}/include"
38 enableParallelBuilding = true;
42 description = "High-performance theorem prover and SMT solver";
43 homepage = "https://yices.csl.sri.com";
44 license = licenses.gpl3;
45 platforms = with platforms; linux ++ darwin;
46 maintainers = with maintainers; [ thoughtpolice ];