Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 12 lines 295 B view raw
1{ fetchFromGitHub, buildDunePackage, ocaml_pcre, mparser }: 2 3buildDunePackage rec { 4 pname = "mparser-pcre"; 5 useDune2 = true; 6 7 inherit (mparser) src version; 8 9 propagatedBuildInputs = [ ocaml_pcre mparser ]; 10 11 meta = mparser.meta // { description = "PCRE-based regular expressions"; }; 12}