{ stdenv, fetchurl, perl, nettools, polyml, proofgeneral }: # nettools needed for hostname let name = "Isabelle2012"; theories = ["HOL" "FOL" "ZF"]; in stdenv.mkDerivation { inherit name theories; src = fetchurl { url = http://www.cl.cam.ac.uk/research/hvg/isabelle/dist/Isabelle2012.tar.gz; sha256 = "1w2k5cg0d9hyigax0hwp6d84jnylb13ysk4x5kwl2412xryravxq"; }; buildInputs = [ perl polyml nettools ]; sourceRoot = name; patches = [ ./settings.patch ]; postPatch = '' ENV=$(type -p env) patchShebangs "." substituteInPlace lib/Tools/env \ --replace /usr/bin/env $ENV substituteInPlace lib/Tools/install \ --replace /usr/bin/env $ENV substituteInPlace src/Pure/IsaMakefile \ --replace /bin/bash /bin/sh substituteInPlace etc/settings \ --subst-var-by ML_HOME "${polyml}/bin" \ --subst-var-by PROOFGENERAL_HOME "${proofgeneral}/share/emacs/site-lisp/ProofGeneral" ''; buildPhase = '' ./build $theories ''; installPhase = '' mkdir -p $out/bin mv $TMP/$name $out cd $out/$name bin/isabelle install -p $out/bin ''; meta = { description = "A generic proof assistant"; longDescription = '' Isabelle is a generic proof assistant. It allows mathematical formulas to be expressed in a formal language and provides tools for proving those formulas in a logical calculus. ''; homepage = http://isabelle.in.tum.de/; license = "LGPL"; }; }