1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 stdio,
6}:
7
8buildDunePackage rec {
9 pname = "nice_parser";
10 version = "1.0.0";
11 minimalOCamlVersion = "4.07";
12
13 src = fetchFromGitHub {
14 owner = "smolkaj";
15 repo = "nice-parser";
16 tag = version;
17 hash = "sha256-h1rqdv19tUH3CsL3OLsTmKir7YCYt4PaW19ymotEvIY=";
18 };
19
20 propagatedBuildInputs = [
21 stdio
22 ];
23
24 meta = {
25 inherit (src.meta) homepage;
26 description = "Nice parsers without the boilerplate";
27 license = lib.licenses.mit;
28 maintainers = [ lib.maintainers.tiferrei ];
29 };
30}