Removing tetex reference in E Prover
svn path=/nixpkgs/trunk/; revision=11810
This commit is contained in:
parent
2741145987
commit
66f306ac4e
@ -9,12 +9,14 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1zm1xip840hlam60kqk6xf0ikvyk7ch3ql1ac6wb68dx2l6hyhxv";
|
sha256 = "1zm1xip840hlam60kqk6xf0ikvyk7ch3ql1ac6wb68dx2l6hyhxv";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =[which tetex];
|
buildInputs =[which texLive];
|
||||||
|
|
||||||
preConfigure = "sed -e 's@^EXECPATH\\s.*@EXECPATH = '\$out'/bin@' -i Makefile.vars";
|
preConfigure = "sed -e 's@^EXECPATH\\s.*@EXECPATH = '\$out'/bin@' -i Makefile.vars";
|
||||||
|
|
||||||
buildPhase = "make install";
|
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;
|
mkdir -p \$out/share/doc ; cp -r DOC \$out/share/doc/EProver;
|
||||||
echo eproof -xAuto --tstp-in --tstp-out '\"\$@\"' >\$out/bin/eproof-tptp;
|
echo eproof -xAuto --tstp-in --tstp-out '\"\$@\"' >\$out/bin/eproof-tptp;
|
||||||
chmod a+x \$out/bin/eproof-tptp; ";
|
chmod a+x \$out/bin/eproof-tptp; ";
|
||||||
|
@ -557,9 +557,14 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
eprover = import ../tools/misc/eProver {
|
eprover = composedArgsAndFun (import ../tools/misc/eProver) {
|
||||||
inherit fetchurl stdenv which tetex;
|
inherit fetchurl stdenv which;
|
||||||
};
|
texLive = texLiveAggregationFun {
|
||||||
|
paths = [
|
||||||
|
texLive texLiveExtra
|
||||||
|
];
|
||||||
|
} null;
|
||||||
|
} null;
|
||||||
|
|
||||||
exif = import ../tools/graphics/exif {
|
exif = import ../tools/graphics/exif {
|
||||||
inherit fetchurl stdenv pkgconfig libexif popt;
|
inherit fetchurl stdenv pkgconfig libexif popt;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user