ocamlPackages.ocaml_pcre: 8.0.4 → 8.0.5 (#465689)

This commit is contained in:
Vincent Laporte
2025-12-04 04:25:40 +00:00
committed by GitHub
@@ -6,29 +6,25 @@
dune-configurator,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "pcre";
version = "8.0.4";
useDune2 = true;
minimalOCamlVersion = "4.12";
version = "8.0.5";
src = fetchurl {
url = "https://github.com/mmottl/pcre-ocaml/releases/download/${version}/pcre-${version}.tbz";
sha256 = "sha256-CIoy3Co4YnVZ5AkEjkUarqV0u08ZAqU0IQsaL1SnuCA=";
url = "https://github.com/mmottl/pcre-ocaml/releases/download/${finalAttrs.version}/pcre-${finalAttrs.version}.tbz";
hash = "sha256-7ZvPiNeBdnrWp8BICv8J1YifL8UA3aDRYgoXhtTkRJA=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ pcre ];
meta = with lib; {
meta = {
homepage = "https://mmottl.github.io/pcre-ocaml";
description = "Efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [
vbmithr
];
};
}
})