depot/pkgs/development/ocaml-modules/mparser/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
515 B
Nix

{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "mparser";
version = "1.3";
useDune2 = true;
src = fetchFromGitHub {
owner = "murmour";
repo = "mparser";
rev = version;
sha256 = "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx";
};
meta = {
description = "Simple monadic parser combinator OCaml library";
license = lib.licenses.lgpl21Plus;
homepage = "https://github.com/murmour/mparser";
maintainers = [ lib.maintainers.vbgl ];
};
}