mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Removing tetex reference in E Prover
svn path=/nixpkgs/trunk/; revision=11810
This commit is contained in:
parent
2741145987
commit
66f306ac4e
2 changed files with 12 additions and 5 deletions
|
@ -9,12 +9,14 @@ stdenv.mkDerivation {
|
|||
sha256 = "1zm1xip840hlam60kqk6xf0ikvyk7ch3ql1ac6wb68dx2l6hyhxv";
|
||||
};
|
||||
|
||||
buildInputs =[which tetex];
|
||||
buildInputs =[which texLive];
|
||||
|
||||
preConfigure = "sed -e 's@^EXECPATH\\s.*@EXECPATH = '\$out'/bin@' -i Makefile.vars";
|
||||
|
||||
buildPhase = "make install";
|
||||
installCommand = "mkdir -p \$out/bin; make install-exec; make documentation ;
|
||||
|
||||
# HOME=. allows to build missing TeX formats
|
||||
installCommand = "mkdir -p \$out/bin; make install-exec; 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; ";
|
||||
|
|
|
@ -557,9 +557,14 @@ let pkgs = rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
eprover = import ../tools/misc/eProver {
|
||||
inherit fetchurl stdenv which tetex;
|
||||
};
|
||||
eprover = composedArgsAndFun (import ../tools/misc/eProver) {
|
||||
inherit fetchurl stdenv which;
|
||||
texLive = texLiveAggregationFun {
|
||||
paths = [
|
||||
texLive texLiveExtra
|
||||
];
|
||||
} null;
|
||||
} null;
|
||||
|
||||
exif = import ../tools/graphics/exif {
|
||||
inherit fetchurl stdenv pkgconfig libexif popt;
|
||||
|
|
Loading…
Reference in a new issue