1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 16:42:09 +00:00
nixpkgs/pkgs/applications/science/logic/eprover/default.nix

30 lines
754 B
Nix
Raw Normal View History

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