Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 dune_3, 5 dyn, 6}: 7 8buildDunePackage { 9 pname = "ocamlc-loc"; 10 inherit (dune_3) src version; 11 duneVersion = "3"; 12 13 dontAddPrefix = true; 14 15 preBuild = '' 16 rm -rf vendor/csexp 17 rm -rf vendor/pp 18 ''; 19 20 minimalOCamlVersion = "4.08"; 21 22 propagatedBuildInputs = [ dyn ]; 23 24 meta = with lib; { 25 description = "Parse ocaml compiler output into structured form"; 26 maintainers = [ maintainers.ulrikstrid ]; 27 license = licenses.mit; 28 }; 29}