nixpkgs/pkgs/applications/science/logic/eprover/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, which, texLive }:
2012-12-08 20:36:38 +00:00
let
s = # Generated upstream information
rec {
baseName="eprover";
2013-10-20 17:03:04 +00:00
version="1.8";
2012-12-08 20:36:38 +00:00
name="${baseName}-${version}";
2013-10-20 17:03:04 +00:00
hash="0bl4dr7k6simwdvdyxhnjkiz4nm5y0nr8bfhc34zk0360i9m6sk3";
url="http://www4.in.tum.de/~schulz/WORK/E_DOWNLOAD/V_1.8/E.tgz";
sha256="0bl4dr7k6simwdvdyxhnjkiz4nm5y0nr8bfhc34zk0360i9m6sk3";
2012-12-08 20:36:38 +00:00
};
in
stdenv.mkDerivation {
2012-12-08 20:36:38 +00:00
inherit (s) name;
src = fetchurl {
2012-12-08 20:36:38 +00:00
name = "E-${s.version}.tar.gz";
inherit (s) url sha256;
};
buildInputs = [which texLive];
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 = {
2012-12-08 20:36:38 +00:00
inherit (s) version;
description = "E automated theorem prover";
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.all;
};
}