depot/third_party/nixpkgs/pkgs/applications/science/logic/verit/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

31 lines
795 B
Nix

{ stdenv, fetchurl, autoreconfHook, gmp, flex, bison }:
stdenv.mkDerivation {
pname = "veriT";
version = "2016";
src = fetchurl {
url = "http://www.verit-solver.org/distrib/veriT-stable2016.tar.gz";
sha256 = "0gvp4diz0qjg0y5ry0p1z7dkdkxw8l7jb8cdhvcnhl06jx977v4b";
};
nativeBuildInputs = [ autoreconfHook flex bison ];
buildInputs = [ gmp ];
# --disable-static actually enables static linking here...
dontDisableStatic = true;
makeFlags = [ "LEX=${flex}/bin/flex" ];
preInstall = ''
mkdir -p $out/bin
'';
meta = with stdenv.lib; {
description = "An open, trustable and efficient SMT-solver";
homepage = "http://www.verit-solver.org/";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.gebner ];
};
}