mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 16:40:12 +00:00
Merge pull request #130663 from symphorien/bitwuzla
bitwuzla: init at unstable-2021-07-01
This commit is contained in:
commit
455712841c
67
pkgs/applications/science/logic/bitwuzla/default.nix
Normal file
67
pkgs/applications/science/logic/bitwuzla/default.nix
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
, python3
|
||||||
|
, cmake
|
||||||
|
, lingeling
|
||||||
|
, btor2tools
|
||||||
|
, gtest
|
||||||
|
, gmp
|
||||||
|
, cadical
|
||||||
|
, minisat
|
||||||
|
, picosat
|
||||||
|
, cryptominisat
|
||||||
|
, zlib
|
||||||
|
, pkg-config
|
||||||
|
# "*** internal error in 'lglib.c': watcher stack overflow" on aarch64-linux
|
||||||
|
, withLingeling ? !stdenv.hostPlatform.isAarch64
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "bitwuzla";
|
||||||
|
version = "unstable-2021-07-01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bitwuzla";
|
||||||
|
repo = "bitwuzla";
|
||||||
|
rev = "58d720598e359b1fdfec4a469c76f1d1f24db51a";
|
||||||
|
sha256 = "06ymqsdppyixb918161rmbgqvbnarj4nm4az88lkn3ri4gyimw04";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
buildInputs = [
|
||||||
|
cadical
|
||||||
|
cryptominisat
|
||||||
|
picosat
|
||||||
|
minisat
|
||||||
|
btor2tools
|
||||||
|
gmp
|
||||||
|
zlib
|
||||||
|
] ++ lib.optional withLingeling lingeling;
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DBUILD_SHARED_LIBS=ON"
|
||||||
|
"-DPicoSAT_INCLUDE_DIR=${lib.getDev picosat}/include/picosat"
|
||||||
|
"-DBtor2Tools_INCLUDE_DIR=${lib.getDev btor2tools}/include/btor2parser"
|
||||||
|
"-DBtor2Tools_LIBRARIES=${lib.getLib btor2tools}/lib/libbtor2parser${stdenv.hostPlatform.extensions.sharedLibrary}"
|
||||||
|
] ++ lib.optional doCheck "-DTESTING=YES";
|
||||||
|
|
||||||
|
checkInputs = [ python3 gtest ];
|
||||||
|
# two tests fail on darwin and 3 on aarch64-linux
|
||||||
|
doCheck = stdenv.hostPlatform.isLinux && (!stdenv.hostPlatform.isAarch64);
|
||||||
|
preCheck = let
|
||||||
|
var = if stdenv.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH";
|
||||||
|
in
|
||||||
|
''
|
||||||
|
export ${var}=$(readlink -f lib)
|
||||||
|
patchShebangs ..
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A SMT solver for fixed-size bit-vectors, floating-point arithmetic, arrays, and uninterpreted functions";
|
||||||
|
homepage = "https://bitwuzla.github.io";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ symphorien ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11,14 +11,30 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "05lvnvapjawgkky38xknb9lgaliiwan4kggmb9yggl4ifpjrh8qf";
|
sha256 = "05lvnvapjawgkky38xknb9lgaliiwan4kggmb9yggl4ifpjrh8qf";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" "lib" ];
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
dontAddPrefix = true;
|
|
||||||
|
# the configure script is not generated by autotools and does not accept the
|
||||||
|
# arguments that the default configurePhase passes like --prefix and --libdir
|
||||||
|
configurePhase = ''
|
||||||
|
runHook preConfigure
|
||||||
|
|
||||||
|
./configure
|
||||||
|
|
||||||
|
runHook postConfigure
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
install -Dm0755 build/cadical "$out/bin/cadical"
|
install -Dm0755 build/cadical "$out/bin/cadical"
|
||||||
install -Dm0755 build/mobical "$out/bin/mobical"
|
install -Dm0755 build/mobical "$out/bin/mobical"
|
||||||
mkdir -p "$out/share/doc/${pname}-${version}/"
|
install -Dm0644 src/ccadical.h "$dev/include/ccadical.h"
|
||||||
install -Dm0755 {LICEN?E,README*,VERSION} "$out/share/doc/${pname}-${version}/"
|
install -Dm0644 build/libcadical.a "$lib/lib/libcadical.a"
|
||||||
|
mkdir -p "$out/share/doc/${pname}/"
|
||||||
|
install -Dm0755 {LICEN?E,README*,VERSION} "$out/share/doc/${pname}/"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -30535,6 +30535,8 @@ in
|
||||||
|
|
||||||
boolector = callPackage ../applications/science/logic/boolector {};
|
boolector = callPackage ../applications/science/logic/boolector {};
|
||||||
|
|
||||||
|
bitwuzla = callPackage ../applications/science/logic/bitwuzla {};
|
||||||
|
|
||||||
symbiyosys = callPackage ../applications/science/logic/symbiyosys {};
|
symbiyosys = callPackage ../applications/science/logic/symbiyosys {};
|
||||||
|
|
||||||
mcy = callPackage ../applications/science/logic/mcy {};
|
mcy = callPackage ../applications/science/logic/mcy {};
|
||||||
|
|
Loading…
Reference in a new issue