E prover: do not build the manual

This commit is contained in:
Vincent Laporte 2015-06-25 23:21:25 +02:00
parent f5f24dd95a
commit 715f78be7e
2 changed files with 4 additions and 14 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, which, texLive }:
{ stdenv, fetchurl, which }:
let
s = # Generated upstream information
rec {
@ -18,26 +18,22 @@ stdenv.mkDerivation {
inherit (s) url sha256;
};
buildInputs = [which texLive];
buildInputs = [ which ];
preConfigure = "sed -e 's@^EXECPATH\\s.*@EXECPATH = '\$out'/bin@' -i Makefile.vars";
buildPhase = "make install";
# HOME=. allows to build missing TeX formats
installPhase = ''
mkdir -p $out/bin
make install
HOME=. make documentation
mkdir -p $out/share/doc
cp -r DOC $out/share/doc/EProver
echo eproof -xAuto --tstp-in --tstp-out '"$@"' > $out/bin/eproof-tptp
chmod a+x $out/bin/eproof-tptp
'';
meta = {
inherit (s) version;
description = "E automated theorem prover";
description = "Automated theorem prover for full first-order logic with equality";
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.all;
};

View file

@ -14159,13 +14159,7 @@ let
ekrhyper = callPackage ../applications/science/logic/ekrhyper {};
eprover = callPackage ../applications/science/logic/eprover {
texLive = texLiveAggregationFun {
paths = [
texLive texLiveExtra
];
};
};
eprover = callPackage ../applications/science/logic/eprover { };
gappa = callPackage ../applications/science/logic/gappa { };