yices: 2.6.5 -> 2.7.0

kyehn 40b17486 757e96e0

Changed files
+16 -6
pkgs
by-name
yi
yices
+16 -6
pkgs/by-name/yi/yices/package.nix
···
gperf,
autoreconfHook,
libpoly,
+
ncurses5,
}:
let
gmp-static = gmp.override { withStatic = true; };
in
-
stdenv.mkDerivation rec {
+
stdenv.mkDerivation (finalAttrs: {
pname = "yices";
-
version = "2.6.5";
+
version = "2.7.0";
src = fetchFromGitHub {
owner = "SRI-CSL";
repo = "yices2";
-
rev = "Yices-${version}";
-
hash = "sha256-/sKyHkFW5I5kojNIRPEKojzTvfRZiyVIN5VlBIbAV7k=";
+
tag = "yices-${finalAttrs.version}";
+
hash = "sha256-siyepgxqKWRyO4+SB95lmhJ98iDubk0R0ErEJdSsM8o=";
};
-
postPatch = "patchShebangs tests/regress/check.sh";
+
postPatch = ''
+
patchShebangs tests/regress/check.sh
+
''
+
# operation not permitted
+
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
+
substituteInPlace utils/make_source_version \
+
--replace-fail '"/usr/bin/mktemp -t out"' "mktemp"
+
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
···
enableParallelBuilding = true;
doCheck = true;
+
nativeCheckInputs = [ ncurses5 ];
+
meta = with lib; {
description = "High-performance theorem prover and SMT solver";
homepage = "https://yices.csl.sri.com";
···
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ thoughtpolice ];
};
-
}
+
})