about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/psmt2-frontend/default.nix
blob: 41e13f21a41219146f9a96426c3df368eab5a3da (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
{ lib, fetchFromGitHub, buildDunePackage, menhir }:

buildDunePackage rec {
  version = "0.4.0";
  pname = "psmt2-frontend";

  src = fetchFromGitHub {
    owner = "ACoquereau";
    repo = pname;
    rev = version;
    sha256 = "sha256-cYY9x7QZjH7pdJyHMqfMXgHZ3/zJLp/6ntY6OSIo6Vs=";
  };

  useDune2 = true;

  minimumOCamlVersion = "4.03";

  strictDeps = true;

  nativeBuildInputs = [ menhir ];

  meta = {
    description = "A simple parser and type-checker for polomorphic extension of the SMT-LIB 2 language";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.vbgl ];
    inherit (src.meta) homepage;
  };

}