metis-prover: init at 2.3
This commit is contained in:
parent
af9f1a5552
commit
5493dccfbb
29
pkgs/applications/science/logic/metis-prover/default.nix
Normal file
29
pkgs/applications/science/logic/metis-prover/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, perl, mlton }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "metis-prover-${version}";
|
||||
version = "2.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.gilith.com/software/metis/metis.tar.gz";
|
||||
sha256 = "07wqhic66i5ip2j194x6pswwrxyxrimpc4vg0haa5aqv9pfpmxad";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perl ];
|
||||
buildInputs = [ mlton ];
|
||||
|
||||
patchPhase = "patchShebangs scripts/mlpp";
|
||||
|
||||
buildPhase = "make mlton";
|
||||
|
||||
installPhase = ''
|
||||
install -Dm0755 bin/mlton/metis $out/bin/metis
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Automatic theorem prover for first-order logic with equality";
|
||||
homepage = http://www.gilith.com/research/metis/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
};
|
||||
}
|
@ -14345,6 +14345,8 @@ let
|
||||
ocaml_mysql ocamlnet ulex08 camlzip ocaml_pcre;
|
||||
});
|
||||
|
||||
metis-prover = callPackage ../applications/science/logic/metis-prover { };
|
||||
|
||||
minisat = callPackage ../applications/science/logic/minisat {};
|
||||
|
||||
opensmt = callPackage ../applications/science/logic/opensmt { };
|
||||
|
Loading…
Reference in New Issue
Block a user