mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
13 lines
295 B
Nix
13 lines
295 B
Nix
{ fetchFromGitHub, buildDunePackage, ocaml_pcre, mparser }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mparser-pcre";
|
|
useDune2 = true;
|
|
|
|
inherit (mparser) src version;
|
|
|
|
propagatedBuildInputs = [ ocaml_pcre mparser ];
|
|
|
|
meta = mparser.meta // { description = "PCRE-based regular expressions"; };
|
|
}
|