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