nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 20 lines 278 B view raw
1{ 2 buildDunePackage, 3 ocaml_pcre, 4 mparser, 5}: 6 7buildDunePackage { 8 pname = "mparser-pcre"; 9 10 inherit (mparser) src version; 11 12 propagatedBuildInputs = [ 13 ocaml_pcre 14 mparser 15 ]; 16 17 meta = mparser.meta // { 18 description = "PCRE-based regular expressions"; 19 }; 20}