nixpkgs/pkgs/development/ocaml-modules/pcre/default.nix
Hythera b6efa95b92 maintainers: remove vbmithr
(cherry picked from commit 29d4c28ad7)
2026-06-28 19:45:56 +00:00

28 lines
677 B
Nix

{
lib,
buildDunePackage,
fetchurl,
pcre,
dune-configurator,
}:
buildDunePackage (finalAttrs: {
pname = "pcre";
version = "8.0.5";
src = fetchurl {
url = "https://github.com/mmottl/pcre-ocaml/releases/download/${finalAttrs.version}/pcre-${finalAttrs.version}.tbz";
hash = "sha256-7ZvPiNeBdnrWp8BICv8J1YifL8UA3aDRYgoXhtTkRJA=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ pcre ];
meta = {
homepage = "https://mmottl.github.io/pcre-ocaml";
description = "Efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
};
})