1 { lib, buildDunePackage, fetchurl, pcre, dune-configurator }:
9 minimalOCamlVersion = "4.12";
12 url = "https://github.com/mmottl/pcre-ocaml/releases/download/${version}/pcre-${version}.tbz";
13 sha256 = "sha256-ZxFC9AtthhccvAZyU/qt+QMBkWHVdIi9D7bFRWwsvRo=";
16 buildInputs = [ dune-configurator ];
18 propagatedBuildInputs = [ pcre ];
21 homepage = "https://mmottl.github.io/pcre-ocaml";
22 description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
23 license = licenses.lgpl21Plus;
24 maintainers = with maintainers; [ maggesi vbmithr ];