mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
Adding E-KRHyper theorem prover
This commit is contained in:
parent
369defb7c1
commit
9d92fe013e
32
pkgs/applications/science/logic/ekrhyper/default.nix
Normal file
32
pkgs/applications/science/logic/ekrhyper/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{stdenv, fetchurl, ocaml, perl}:
|
||||||
|
let
|
||||||
|
s = # Generated upstream information
|
||||||
|
rec {
|
||||||
|
baseName="ekrhyper";
|
||||||
|
version="1_4_08022013";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
hash="0vni5pq1p99428ii3g13chiqxcs8k1fm6jlvg1jqh4qdcs42w7yb";
|
||||||
|
url="http://userpages.uni-koblenz.de/~bpelzer/ekrhyper/ekrh_1_4_08022013.tar.gz";
|
||||||
|
sha256="0vni5pq1p99428ii3g13chiqxcs8k1fm6jlvg1jqh4qdcs42w7yb";
|
||||||
|
};
|
||||||
|
buildInputs = [
|
||||||
|
ocaml perl
|
||||||
|
];
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit (s) name version;
|
||||||
|
inherit buildInputs;
|
||||||
|
src = fetchurl {
|
||||||
|
inherit (s) url sha256;
|
||||||
|
};
|
||||||
|
setSourceRoot = "export sourceRoot=$(echo */ekrh/src/)";
|
||||||
|
preInstall = "export INSTALLDIR=$out";
|
||||||
|
postInstall = ''for i in "$out/casc"/*; do ln -s "$i" "$out/bin/ekrh-casc-$(basename $i)"; done '';
|
||||||
|
meta = {
|
||||||
|
inherit (s) version;
|
||||||
|
description = "Automated first-order theorem prover";
|
||||||
|
license = stdenv.lib.licenses.gpl2 ;
|
||||||
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
url http://userpages.uni-koblenz.de/~bpelzer/ekrhyper/
|
||||||
|
ensure_choice
|
||||||
|
version '.*[^0-9]_([-0-9_]+)[.].*' '\1'
|
@ -8833,6 +8833,8 @@ let
|
|||||||
|
|
||||||
cvc3 = callPackage ../applications/science/logic/cvc3 {};
|
cvc3 = callPackage ../applications/science/logic/cvc3 {};
|
||||||
|
|
||||||
|
ekrhyper = callPackage ../applications/science/logic/ekrhyper {};
|
||||||
|
|
||||||
eprover = callPackage ../applications/science/logic/eprover {
|
eprover = callPackage ../applications/science/logic/eprover {
|
||||||
texLive = texLiveAggregationFun {
|
texLive = texLiveAggregationFun {
|
||||||
paths = [
|
paths = [
|
||||||
|
Loading…
Reference in New Issue
Block a user