summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/yuujinchou/default.nix
blob: 5a78809d9099f070a458430d57a4714a8d04883a (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
{ lib, fetchFromGitHub, buildDunePackage, qcheck-alcotest }:

buildDunePackage rec {
  pname = "yuujinchou";
  version = "2.0.0";

  minimalOCamlVersion = "4.12";

  src = fetchFromGitHub {
    owner = "RedPRL";
    repo = pname;
    rev = version;
    sha256 = "sha256:1nhz44cyipy922anzml856532m73nn0g7iwkg79yzhq6yb87109w";
  };

  doCheck = true;
  checkInputs = [ qcheck-alcotest ];

  meta = {
    description = "Name pattern combinators";
    inherit (src.meta) homepage;
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.vbgl ];
  };
}