boolector: 3.2.3 -> 3.2.4 (#457033)

This commit is contained in:
dotlambda
2025-11-03 06:40:38 +00:00
committed by GitHub
+6 -11
View File
@@ -3,7 +3,6 @@
fetchFromGitHub,
lib,
python3,
fetchpatch,
cmake,
lingeling,
btor2tools,
@@ -13,23 +12,19 @@
stdenv.mkDerivation rec {
pname = "boolector";
version = "3.2.3";
version = "3.2.4";
src = fetchFromGitHub {
owner = "boolector";
repo = "boolector";
tag = version;
hash = "sha256-CdfpXUbU1+yEmrNyl+hvHlJfpzzzx356naim6vRafDg=";
hash = "sha256-CKhaPaWUB6Fz0LfnCl81LVmTebCWzTvZLKeC0KH3by4=";
};
patches = [
# present in master - remove after 3.2.3
(fetchpatch {
name = "update-unit-tests-to-cpp-14.patch";
url = "https://github.com/Boolector/boolector/commit/cc13f371c0c5093d98638ddd213dc835ef3aadf3.patch";
hash = "sha256-h8DBhAvUu+wXBwmvwRhHnJv3XrbEpBpvX9D1FI/+avc=";
})
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 3.3)" "cmake_minimum_required(VERSION 3.10)"
'';
nativeBuildInputs = [
cmake