3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/logic/verit/default.nix

32 lines
802 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, gmp, flex, bison }:
2015-03-31 08:14:38 +01:00
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "veriT";
2021-12-31 12:00:43 +00:00
version = "2021.06.2";
2015-03-31 08:14:38 +01:00
src = fetchurl {
2021-12-31 12:00:43 +00:00
url = "https://verit.loria.fr/download/2021.06.2/verit-2021.06.2-rmx.tar.gz";
sha256 = "1yjvvxnsix0rhilc81ycx1s85dymq366c6zh1hwwd8qxp7k1zca2";
2015-03-31 08:14:38 +01:00
};
2015-08-26 08:31:39 +01:00
nativeBuildInputs = [ autoreconfHook flex bison ];
buildInputs = [ gmp ];
2015-03-31 08:14:38 +01:00
2016-05-08 14:10:08 +01:00
# --disable-static actually enables static linking here...
dontDisableStatic = true;
2015-08-26 08:31:39 +01:00
makeFlags = [ "LEX=${flex}/bin/flex" ];
2015-03-31 08:14:38 +01:00
2015-08-26 08:31:39 +01:00
preInstall = ''
mkdir -p $out/bin
2015-03-31 08:14:38 +01:00
'';
meta = with lib; {
2015-03-31 08:14:38 +01:00
description = "An open, trustable and efficient SMT-solver";
2021-12-31 12:00:43 +00:00
homepage = "https://verit.loria.fr/";
2015-03-31 08:14:38 +01:00
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.gebner ];
};
}