biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / pcre / default.nix
blobca3cc203f968924154b91c048ea67ec8a31a616f
1 { lib, buildDunePackage, fetchurl, pcre, dune-configurator }:
3 buildDunePackage rec {
4   pname = "pcre";
5   version = "7.5.0";
7   useDune2 = true;
9   minimalOCamlVersion = "4.12";
11   src = fetchurl {
12     url = "https://github.com/mmottl/pcre-ocaml/releases/download/${version}/pcre-${version}.tbz";
13     sha256 = "sha256-ZxFC9AtthhccvAZyU/qt+QMBkWHVdIi9D7bFRWwsvRo=";
14   };
16   buildInputs = [ dune-configurator ];
18   propagatedBuildInputs = [ pcre ];
20   meta = with lib; {
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 ];
25   };