2015-06-25 14:21:25 -07:00
|
|
|
{ stdenv, fetchurl, which }:
|
2018-02-14 14:46:12 -08:00
|
|
|
|
2016-09-20 08:56:41 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "eprover";
|
2020-07-31 16:35:12 -07:00
|
|
|
version = "2.5";
|
2007-10-07 06:37:08 -07:00
|
|
|
|
2008-09-02 06:51:32 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://wwwlehre.dhbw-stuttgart.de/~sschulz/WORK/E_DOWNLOAD/V_${version}/E.tgz";
|
2020-07-31 16:35:12 -07:00
|
|
|
sha256 = "0jj0zkiqpcx9xp16spkskrv3jycprz7jg1g97i67j43c4yvxylwa";
|
2008-09-02 06:51:32 -07:00
|
|
|
};
|
2007-10-07 06:37:08 -07:00
|
|
|
|
2015-06-25 14:21:25 -07:00
|
|
|
buildInputs = [ which ];
|
2007-10-07 06:37:08 -07:00
|
|
|
|
2016-02-29 06:35:21 -08:00
|
|
|
preConfigure = ''
|
2018-02-14 14:46:12 -08:00
|
|
|
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"
|
|
|
|
];
|
2007-10-07 06:37:08 -07:00
|
|
|
|
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";
|
2020-03-31 18:11:51 -07: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;
|
2007-10-07 06:37:08 -07:00
|
|
|
};
|
|
|
|
}
|