d5e496a2bb
Signed-off-by: Austin Seipp <aseipp@pobox.com>
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, cmake, lingeling, btor2tools
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "boolector-${version}";
|
|
version = "3.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boolector";
|
|
repo = "boolector";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "15i3ni5klss423m57wcy1gx0m5wfrjmglapwg85pm7fb3jj1y7sz";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
installPhase = ''
|
|
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
|
|
'';
|
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An extremely fast SMT solver for bit-vectors and arrays";
|
|
homepage = https://boolector.github.io;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|