ocamlPackages.mparser-re: init at 1.3 (#495950)

This commit is contained in:
Ulrik Strid 2026-03-06 10:14:16 +00:00 committed by GitHub
commit d30ac9c902
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{
buildDunePackage,
mparser,
re,
}:
buildDunePackage {
pname = "mparser-re";
inherit (mparser) src version;
propagatedBuildInputs = [
mparser
re
];
meta = mparser.meta // {
description = "MParser plugin: RE-based regular expressions";
};
}

View file

@ -1373,6 +1373,8 @@ let
mparser-pcre = callPackage ../development/ocaml-modules/mparser/pcre.nix { };
mparser-re = callPackage ../development/ocaml-modules/mparser/re.nix { };
msgpck = callPackage ../development/ocaml-modules/msgpck { };
mrmime = callPackage ../development/ocaml-modules/mrmime { };