ocamlPackages.ocamlc-loc: init at 3.4.1

This commit is contained in:
Ulrik Strid 2022-11-08 09:37:47 +01:00 committed by Vincent Laporte
parent 492d2256f4
commit 920768aef7
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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;
};
}

View file

@ -956,6 +956,8 @@ let
else
null;
ocamlc-loc = callPackage ../development/ocaml-modules/ocamlc-loc { };
ocaml_cryptgps = callPackage ../development/ocaml-modules/cryptgps { };
ocaml_expat =