2021-07-14 15:57:06 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl, pcre, dune-configurator }:
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
2021-07-14 15:57:06 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "pcre";
|
2022-09-29 12:38:00 +00:00
|
|
|
version = "7.5.0";
|
2021-07-14 15:57:06 +00:00
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
2022-09-29 12:38:00 +00:00
|
|
|
minimalOCamlVersion = "4.12";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-14 15:57:06 +00:00
|
|
|
url = "https://github.com/mmottl/pcre-ocaml/releases/download/${version}/pcre-${version}.tbz";
|
2022-09-29 12:38:00 +00:00
|
|
|
sha256 = "sha256-ZxFC9AtthhccvAZyU/qt+QMBkWHVdIi9D7bFRWwsvRo=";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
};
|
|
|
|
|
2021-07-14 15:57:06 +00:00
|
|
|
buildInputs = [ dune-configurator ];
|
2010-12-21 09:37:35 +00:00
|
|
|
|
2021-07-14 15:57:06 +00:00
|
|
|
propagatedBuildInputs = [ pcre ];
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-07-14 15:57:06 +00:00
|
|
|
homepage = "https://mmottl.github.io/pcre-ocaml";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
description = "Efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
|
2021-07-14 15:57:06 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-10-07 14:44:58 +00:00
|
|
|
maintainers = with maintainers; [ maggesi vbmithr ];
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
};
|
|
|
|
}
|