2018-08-15 22:56:21 +02:00
|
|
|
{ stdenv, fetchFromGitHub
|
|
|
|
, cmake, lingeling, btor2tools
|
|
|
|
}:
|
2014-04-06 18:47:42 +02:00
|
|
|
|
2017-07-18 10:20:34 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "boolector-${version}";
|
2018-08-15 22:56:21 +02:00
|
|
|
version = "3.0.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "boolector";
|
|
|
|
repo = "boolector";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
sha256 = "15i3ni5klss423m57wcy1gx0m5wfrjmglapwg85pm7fb3jj1y7sz";
|
2014-04-06 18:47:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-15 22:56:21 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ lingeling btor2tools ];
|
|
|
|
|
|
|
|
cmakeFlags =
|
|
|
|
[ "-DSHARED=ON"
|
|
|
|
"-DUSE_LINGELING=YES"
|
|
|
|
"-DBTOR2_INCLUDE_DIR=${btor2tools.dev}/include"
|
|
|
|
"-DBTOR2_LIBRARIES=${btor2tools.lib}/lib/libbtor2parser.so"
|
|
|
|
"-DLINGELING_INCLUDE_DIR=${lingeling.dev}/include"
|
|
|
|
"-DLINGELING_LIBRARIES=${lingeling.lib}/lib/liblgl.a"
|
|
|
|
];
|
2017-10-18 06:39:19 +02:00
|
|
|
|
2014-04-06 18:47:42 +02:00
|
|
|
installPhase = ''
|
2018-08-15 22:56:21 +02:00
|
|
|
mkdir -p $out/bin $lib/lib $dev/include
|
|
|
|
|
|
|
|
cp -vr bin/* $out/bin
|
|
|
|
cp -vr lib/* $lib/lib
|
|
|
|
|
|
|
|
rm -rf $out/bin/{examples,test}
|
|
|
|
|
|
|
|
cd ../src
|
|
|
|
find . -iname '*.h' -exec cp --parents '{}' $dev/include \;
|
|
|
|
rm -rf $dev/include/tests
|
2014-04-06 18:47:42 +02:00
|
|
|
'';
|
|
|
|
|
2018-08-15 22:56:21 +02:00
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-04-06 18:47:42 +02:00
|
|
|
description = "An extremely fast SMT solver for bit-vectors and arrays";
|
2018-08-15 22:56:21 +02:00
|
|
|
homepage = https://boolector.github.io;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2014-04-06 18:47:42 +02:00
|
|
|
};
|
2017-07-18 10:20:34 +02:00
|
|
|
}
|