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 {
|
|
|
|
name = "ProofGeneral-4.0";
|
2009-12-11 17:18:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-05-14 22:59:53 +02:00
|
|
|
url = http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-4.0.tgz;
|
|
|
|
sha256 = "1ang2lsc97vl70fkgypfsr1ivdzsdliq3bkvympj30wnc7ayzbmq";
|
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-05-14 22:59:53 +02:00
|
|
|
patches = [ ./emacs-23.3.patch ];
|
|
|
|
|
|
|
|
postPatch =
|
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'
|
|
|
|
'';
|
2009-12-11 17:18:27 +01:00
|
|
|
|
2011-05-14 22:59:53 +02:00
|
|
|
preBuild = "make clean";
|
|
|
|
|
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
|
|
|
})
|