ocamlPackages.pacomb: init at 1.4.3

This commit is contained in:
redianthus
2026-03-02 22:05:49 +01:00
parent 636f6c715f
commit 7f5616d2e5
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{
lib,
buildDunePackage,
fetchFromGitHub,
ppxlib,
stdlib-shims,
}:
buildDunePackage (finalAttrs: {
pname = "pacomb";
version = "1.4.3";
src = fetchFromGitHub {
owner = "craff";
repo = "pacomb";
tag = finalAttrs.version;
hash = "sha256-iS5H/xnMqZjSvrvj5YkBP8j/ChIn/xbQ9xa7WipBUvQ=";
};
buildInputs = [
ppxlib
];
propagatedBuildInputs = [
stdlib-shims
];
minimalOCamlVersion = "5.3";
meta = {
description = "Parsing library based on combinators and ppx extension to write languages";
homepage = "https://github.com/craff/pacomb";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ redianthus ];
};
})
+2
View File
@@ -1689,6 +1689,8 @@ let
### P ###
pacomb = callPackage ../development/ocaml-modules/pacomb { };
paf = callPackage ../development/ocaml-modules/paf { };
paf-cohttp = callPackage ../development/ocaml-modules/paf/cohttp.nix {