2010-06-07 00:39:28 +02:00
|
|
|
{ stdenv, fetchurl, emacs, texinfo, texLive, perl, which, automake }:
|
2009-12-11 17:18:27 +01:00
|
|
|
|
2011-05-14 22:59:53 +02:00
|
|
|
stdenv.mkDerivation (rec {
|
2011-12-13 02:13:46 +01:00
|
|
|
name = "ProofGeneral-4.1";
|
2009-12-11 17:18:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-12-13 02:13:46 +01:00
|
|
|
url = http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-4.1.tgz;
|
|
|
|
sha256 = "1ivxx8c6j7cfdfj2pj0gzdqac7hpb679bjmwdqdcz1c1ni34s9ia";
|
2009-12-11 17:18:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = name;
|
|
|
|
|
2010-06-07 00:39:28 +02:00
|
|
|
buildInputs = [ emacs texinfo texLive perl which ];
|
|
|
|
|
2011-12-13 02:13:46 +01:00
|
|
|
prePatch =
|
2010-06-07 00:39:28 +02:00
|
|
|
'' sed -i "Makefile" \
|
|
|
|
-e "s|^\(\(DEST_\)\?PREFIX\)=.*$|\1=$out|g ; \
|
|
|
|
s|/sbin/install-info|install-info|g"
|
2009-12-11 17:18:27 +01:00
|
|
|
|
2010-06-07 00:39:28 +02:00
|
|
|
sed -i "bin/proofgeneral" -e's/which/type -p/g'
|
2011-12-13 02:13:46 +01:00
|
|
|
|
|
|
|
# @image{ProofGeneral} fails, so remove it.
|
|
|
|
sed -i '94d' doc/PG-adapting.texi
|
|
|
|
sed -i '101d' doc/ProofGeneral.texi
|
2012-06-12 23:51:53 +02:00
|
|
|
|
|
|
|
# Emacs 24 compatibility.
|
|
|
|
sed -i 's|interactive-p|called-interactively-p '\'''any|' isar/isabelle-system.el generic/proof-{menu,script,splash}.el lib/scomint.el
|
2010-06-07 00:39:28 +02:00
|
|
|
'';
|
2009-12-11 17:18:27 +01:00
|
|
|
|
2011-12-13 02:13:46 +01:00
|
|
|
preBuild = ''
|
|
|
|
make clean;
|
|
|
|
'';
|
2011-05-14 22:59:53 +02:00
|
|
|
|
2010-06-07 00:39:28 +02:00
|
|
|
installPhase =
|
|
|
|
# Copy `texinfo.tex' in the right place so that `texi2pdf' works.
|
|
|
|
'' cp -v "${automake}/share/"automake-*/texinfo.tex doc
|
|
|
|
make install install-doc
|
|
|
|
'';
|
2009-12-11 17:18:27 +01:00
|
|
|
|
|
|
|
meta = {
|
2010-06-07 00:39:28 +02:00
|
|
|
description = "Proof General, an Emacs front-end for proof assistants";
|
2009-12-11 17:18:27 +01:00
|
|
|
longDescription = ''
|
|
|
|
Proof General is a generic front-end for proof assistants (also known as
|
|
|
|
interactive theorem provers), based on the customizable text editor Emacs.
|
|
|
|
'';
|
2011-05-14 22:59:53 +02:00
|
|
|
homepage = http://proofgeneral.inf.ed.ac.uk;
|
2010-06-07 00:39:28 +02:00
|
|
|
license = "GPLv2+";
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2009-12-11 17:18:27 +01:00
|
|
|
};
|
2011-05-14 22:59:53 +02:00
|
|
|
})
|