mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
E prover: do not build the manual
This commit is contained in:
parent
f5f24dd95a
commit
715f78be7e
2 changed files with 4 additions and 14 deletions
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue