Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
815 B
Nix
44 lines
815 B
Nix
{
|
|
lib,
|
|
gccStdenv,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
gmp,
|
|
flex,
|
|
bison,
|
|
}:
|
|
|
|
gccStdenv.mkDerivation {
|
|
pname = "veriT";
|
|
version = "2021.06.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://verit.loria.fr/download/2021.06.2/verit-2021.06.2-rmx.tar.gz";
|
|
sha256 = "1yjvvxnsix0rhilc81ycx1s85dymq366c6zh1hwwd8qxp7k1zca2";
|
|
};
|
|
|
|
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 lib; {
|
|
description = "Open, trustable and efficient SMT-solver";
|
|
homepage = "https://verit.loria.fr/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
}
|