ocamlPackages.mparser-pcre: init at 1.3

This commit is contained in:
Sylvain Fankhauser 2021-05-22 09:12:09 +02:00 committed by Vincent Laporte
parent db6c491ee0
commit a38751eb69
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ fetchFromGitHub, buildDunePackage, ocaml_pcre, mparser }:
buildDunePackage rec {
pname = "mparser-pcre";
useDune2 = true;
inherit (mparser) src version;
buildInputs = [ ocaml_pcre mparser ];
meta = mparser.meta // { description = "PCRE-based regular expressions"; };
}

View file

@ -794,6 +794,8 @@ let
mparser = callPackage ../development/ocaml-modules/mparser { };
mparser-pcre = callPackage ../development/ocaml-modules/mparser/pcre.nix { };
mtime = callPackage ../development/ocaml-modules/mtime { };
mustache = callPackage ../development/ocaml-modules/mustache { };