Unverified Commit 5f8939af authored by Vincent Laporte's avatar Vincent Laporte Committed by GitHub
Browse files

ocamlPackages.pacomb: init at 1.4.3 (#494796)

parents 0aea4515 7f5616d2
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -1667,6 +1667,8 @@ let

        ### P ###

        pacomb = callPackage ../development/ocaml-modules/pacomb { };

        paf = callPackage ../development/ocaml-modules/paf { };

        paf-cohttp = callPackage ../development/ocaml-modules/paf/cohttp.nix {