about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/logic/metis-prover/default.nix
blob: bd6f71860bdb9d147c8ec77aed106d3a9086f41d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, stdenv, fetchFromGitHub, perl, mlton }:

stdenv.mkDerivation {
  pname = "metis-prover";
  version = "2.4.20200713";

  src = fetchFromGitHub {
    owner = "gilith";
    repo = "metis";
    rev = "d17c3a8cf6537212c5c4bfdadcf865bd25723132";
    sha256 = "phu1x0yahK/B2bSOCvlze7UJw8smX9zw6dJTpDD9chM=";
  };

  nativeBuildInputs = [ perl ];
  buildInputs = [ mlton ];

  patchPhase = "patchShebangs .";

  buildPhase = "make mlton";

  installPhase = ''
    install -Dm0755 bin/mlton/metis $out/bin/metis
  '';

  meta = with lib; {
    description = "Automatic theorem prover for first-order logic with equality";
    mainProgram = "metis";
    homepage = "https://www.gilith.com/research/metis/";
    license = licenses.mit;
    maintainers = with maintainers; [ gebner ];
    platforms = platforms.unix;
  };
}