nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 26 lines 421 B view raw
1{ 2 lib, 3 buildDunePackage, 4 dune, 5 dyn, 6}: 7 8buildDunePackage { 9 pname = "ocamlc-loc"; 10 inherit (dune) src version; 11 12 dontAddPrefix = true; 13 14 preBuild = '' 15 rm -rf vendor/csexp 16 rm -rf vendor/pp 17 ''; 18 19 propagatedBuildInputs = [ dyn ]; 20 21 meta = { 22 description = "Parse ocaml compiler output into structured form"; 23 maintainers = [ lib.maintainers.ulrikstrid ]; 24 license = lib.licenses.mit; 25 }; 26}