Adding LEO2 automated higher-order prover

svn path=/nixpkgs/trunk/; revision=24952
This commit is contained in:
Michael Raskin 2010-12-01 21:29:42 +00:00
parent 373fabf1c0
commit c32bd62956
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,62 @@
x@{builderDefsPackage
, ocaml, eprover
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
["eprover"];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="leo2";
version="1.2.6";
name="${baseName}_v${version}";
url="http://www.ags.uni-sb.de/~leo/${name}.tgz";
hash="0gjgcm6nb9kzdl0y72sgvf2w2q92s1ix70lh6wjz9lj2qdf7gi1z";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
};
inherit (sourceInfo) name version;
inherit buildInputs;
phaseNames = ["makeInstallationDir" "doUnpack" "doMake" "doFinalize"];
makeInstallationDir = a.fullDepEntry (''
ensureDir "$out/share/leo2/build-dir"
cd "$out/share/leo2/build-dir"
'') ["minInit" "defEnsureDir"];
goSrcDir = "cd src/";
doFinalize = a.fullDepEntry (''
ensureDir "$out/bin"
echo -e "#! /bin/sh\\n$PWD/../bin/leo --atprc $out/etc/leoatprc \"\$@\"\\n" > "$out/bin/leo"
chmod a+x "$out/bin/leo"
ensureDir "$out/etc"
echo -e "e = ${eprover}/bin/eprover\\nepclextract = ${eprover}/bin/epclextract" > "$out/etc/leoatprc"
'') ["minInit" "doMake" "defEnsureDir"];
meta = {
description = "A high-performance typed higher order prover";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
license = "BSD";
};
passthru = {
updateInfo = {
downloadPage = "http://www.ags.uni-sb.de/~leo/download.html";
};
};
}) x

View file

@ -6979,6 +6979,8 @@ let
inherit (pkgs.emacs23Packages) proofgeneral;
};
leo2 = callPackage ../applications/science/logic/leo2 {};
prover9 = callPackage ../applications/science/logic/prover9 { };
ssreflect = callPackage ../applications/science/logic/ssreflect {