Commit 920768ae authored by Ulrik Strid's avatar Ulrik Strid Committed by Vincent Laporte
Browse files

ocamlPackages.ocamlc-loc: init at 3.4.1

parent 492d2256
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
{ lib, buildDunePackage, dune_3, dyn }:

buildDunePackage {
  pname = "ocamlc-loc";
  inherit (dune_3) src version;
  duneVersion = "3";

  dontAddPrefix = true;

  preBuild = ''
    rm -rf vendor/csexp
    rm -rf vendor/pp
  '';

  minimumOCamlVersion = "4.08";

  propagatedBuildInputs = [ dyn ];

  meta = with lib; {
    description = "Parse ocaml compiler output into structured form";
    maintainers = [ maintainers.ulrikstrid ];
    license = licenses.mit;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -956,6 +956,8 @@ let
    else
    null;

    ocamlc-loc = callPackage ../development/ocaml-modules/ocamlc-loc { };

    ocaml_cryptgps = callPackage ../development/ocaml-modules/cryptgps { };

    ocaml_expat =