mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
eprover: Add option to enable LFHOL reasoning
Using eprover as automated theorem prover for sledgehammer requires this option.
This commit is contained in:
parent
63e9fb0448
commit
f79b811f2d
2 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, which }:
|
||||
{ lib, stdenv, fetchurl, which, enableHO ? false }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "eprover";
|
||||
|
@ -17,6 +17,8 @@ stdenv.mkDerivation rec {
|
|||
configureFlags = [
|
||||
"--exec-prefix=$(out)"
|
||||
"--man-prefix=$(out)/share/man"
|
||||
] ++ lib.optionals enableHO [
|
||||
"--enable-ho"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -31965,6 +31965,8 @@ with pkgs;
|
|||
|
||||
eprover = callPackage ../applications/science/logic/eprover { };
|
||||
|
||||
eprover-ho = callPackage ../applications/science/logic/eprover { enableHO = true; };
|
||||
|
||||
gappa = callPackage ../applications/science/logic/gappa { };
|
||||
|
||||
gfan = callPackage ../applications/science/math/gfan {};
|
||||
|
|
Loading…
Reference in a new issue