isabelle: 2013 -> 2014, plus add darwin support

This commit is contained in:
John Wiegley 2014-09-30 12:56:48 -05:00
parent f96684c71a
commit db690f28a3

View File

@ -2,24 +2,30 @@
# nettools needed for hostname # nettools needed for hostname
let let
dirname = "Isabelle2013"; dirname = "Isabelle2014";
theories = ["HOL" "FOL" "ZF"]; theories = ["HOL" "FOL" "ZF"];
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "isabelle-2013"; name = "isabelle-2014";
inherit dirname theories; inherit dirname theories;
src = fetchurl { src = if stdenv.isDarwin
url = http://isabelle.in.tum.de/dist/Isabelle2013_linux.tar.gz; then fetchurl {
sha256 = "0l17s41hwzma0q2glpxrzic8i6mqd9b7awlpwhz0jkli7fj6ny7b"; url = http://isabelle.in.tum.de/dist/Isabelle2014_macos.tar.gz;
}; sha256 = "1aa3vz2nnkkyd4mlsqbs69jqfxlll5h0k5fj9m1j9wqiddqwvwcf";
}
else fetchurl {
url = http://isabelle.in.tum.de/dist/Isabelle2014_linux.tar.gz;
sha256 = "0l17s41hwzma0q2glpxrzic8i6mqd9b7awlpwhz0jkli7fj6ny7b";
};
buildInputs = [ perl polyml nettools ]; buildInputs = [ perl polyml ]
++ stdenv.lib.optional (!stdenv.isDarwin) nettools;
sourceRoot = dirname; sourceRoot = dirname;
patches = [ ./settings.patch ]; patches = stdenv.lib.optionals (!stdenv.isDarwin) [ ./settings.patch ];
postPatch = '' postPatch = ''
ENV=$(type -p env) ENV=$(type -p env)
@ -28,22 +34,20 @@ stdenv.mkDerivation {
--replace /usr/bin/env $ENV --replace /usr/bin/env $ENV
substituteInPlace lib/Tools/install \ substituteInPlace lib/Tools/install \
--replace /usr/bin/env $ENV --replace /usr/bin/env $ENV
substituteInPlace src/Pure/IsaMakefile \
--replace /bin/bash /bin/sh
substituteInPlace etc/settings \ substituteInPlace etc/settings \
--subst-var-by ML_HOME "${polyml}/bin" \ --subst-var-by ML_HOME "${polyml}/bin" \
--subst-var-by PROOFGENERAL_HOME "${proofgeneral}/share/emacs/site-lisp/ProofGeneral" --subst-var-by PROOFGENERAL_HOME "${proofgeneral}/share/emacs/site-lisp/ProofGeneral"
''; '';
buildPhase = '' buildPhase = ''
./build $theories ./bin/isabelle build -s $theories
''; '';
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
mv $TMP/$dirname $out mv $TMP/$dirname $out
cd $out/$dirname cd $out/$dirname
bin/isabelle install -p $out/bin bin/isabelle install $out/bin
''; '';
meta = { meta = {
@ -56,5 +60,6 @@ stdenv.mkDerivation {
''; '';
homepage = http://isabelle.in.tum.de/; homepage = http://isabelle.in.tum.de/;
license = "LGPL"; license = "LGPL";
maintainers = [ stdenv.lib.maintainers.jwiegley ];
}; };
} }