mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 01:20:40 +00:00
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ stdenv, lib, fetchFromGitHub
|
|
, cmake, libedit, gmpxx, bison, flex
|
|
, enableReadline ? false, readline
|
|
, gtest
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opensmt";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "usi-verification-and-security";
|
|
repo = "opensmt";
|
|
rev = "v${version}";
|
|
sha256 = "uoIcXWsxxRsIuFsou3RcN9e48lc7cWMgRPVJLFVslDE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake bison flex ];
|
|
buildInputs = [ libedit gmpxx ]
|
|
++ lib.optional enableReadline readline;
|
|
|
|
preConfigure = ''
|
|
substituteInPlace test/CMakeLists.txt \
|
|
--replace 'FetchContent_Populate' '#FetchContent_Populate'
|
|
'';
|
|
cmakeFlags = [
|
|
"-Dgoogletest_SOURCE_DIR=${gtest.src}"
|
|
"-Dgoogletest_BINARY_DIR=./gtest-build"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A satisfiability modulo theory (SMT) solver";
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux;
|
|
license = if enableReadline then licenses.gpl2Plus else licenses.mit;
|
|
homepage = "https://github.com/usi-verification-and-security/opensmt";
|
|
};
|
|
}
|