Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 pbrt, 4 stdlib-shims, 5}: 6 7buildDunePackage { 8 pname = "ocaml-protoc"; 9 10 inherit (pbrt) version src; 11 12 buildInputs = [ stdlib-shims ]; 13 propagatedBuildInputs = [ pbrt ]; 14 15 doCheck = true; 16 17 meta = pbrt.meta // { 18 description = "Protobuf Compiler for OCaml"; 19 }; 20}