nixpkgs/pkgs/applications/science/logic/eprover/default.nix

30 lines
762 B
Nix
Raw Normal View History

2015-06-25 14:21:25 -07:00
{ stdenv, fetchurl, which }:
2016-09-20 08:56:41 -07:00
stdenv.mkDerivation rec {
name = "eprover-${version}";
2018-11-07 13:33:25 -08:00
version = "2.2";
src = fetchurl {
url = "https://wwwlehre.dhbw-stuttgart.de/~sschulz/WORK/E_DOWNLOAD/V_${version}/E.tgz";
2018-11-07 13:33:25 -08:00
sha256 = "08ihpwgkz0l7skr42iw8lm202kqr51i792bs61qsbnk9gsjlab1c";
};
2015-06-25 14:21:25 -07:00
buildInputs = [ which ];
2016-02-29 06:35:21 -08:00
preConfigure = ''
sed -e 's/ *CC *= *gcc$//' -i Makefile.vars
2016-02-29 06:35:21 -08:00
'';
2018-07-25 14:44:21 -07:00
configureFlags = [
"--exec-prefix=$(out)"
"--man-prefix=$(out)/share/man"
];
2016-09-20 08:56:41 -07:00
meta = with stdenv.lib; {
2015-06-25 14:21:25 -07:00
description = "Automated theorem prover for full first-order logic with equality";
2016-02-29 06:35:21 -08:00
homepage = http://www.eprover.org/;
2016-09-20 08:56:41 -07:00
license = licenses.gpl2;
maintainers = with maintainers; [ raskin gebner ];
platforms = platforms.all;
};
}