2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, perl, mlton }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "metis-prover";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "2.4.20200713";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gilith";
|
|
|
|
repo = "metis";
|
2022-08-12 12:06:08 +00:00
|
|
|
rev = "d17c3a8cf6537212c5c4bfdadcf865bd25723132";
|
|
|
|
sha256 = "phu1x0yahK/B2bSOCvlze7UJw8smX9zw6dJTpDD9chM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ mlton ];
|
|
|
|
|
|
|
|
patchPhase = "patchShebangs .";
|
|
|
|
|
|
|
|
buildPhase = "make mlton";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm0755 bin/mlton/metis $out/bin/metis
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Automatic theorem prover for first-order logic with equality";
|
|
|
|
homepage = "http://www.gilith.com/research/metis/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|