Removing tetex reference in E Prover

svn path=/nixpkgs/trunk/; revision=11810
This commit is contained in:
Michael Raskin 2008-05-10 09:19:50 +00:00
parent 2741145987
commit 66f306ac4e
2 changed files with 12 additions and 5 deletions

View file

@ -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; ";

View file

@ -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;