summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mparser/default.nix
blob: 5f63a98a13097a5a53ab11666edfaff1048ff369 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchFromGitHub, buildDunePackage }:

buildDunePackage rec {
  pname = "mparser";
  version = "1.3";
  useDune2 = true;

  src = fetchFromGitHub {
    owner = "murmour";
    repo = "mparser";
    rev = version;
    sha256 = "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx";
  };

  meta = {
    description = "A simple monadic parser combinator OCaml library";
    license = lib.licenses.lgpl21Plus;
    homepage = "https://github.com/murmour/mparser";
    maintainers = [ lib.maintainers.vbgl ];
  };
}