Files
nixpkgs/pkgs/development/ocaml-modules/ocamlc-loc/default.nix
Ali Caglayan 6e2f074b05 dune_3: 3.20.2 -> 3.21.1
added:
- ocamlPackages.fs-io
- ocamlPackages.top-closure

Cleaned up the dune packages, making the dependencies explicit and
removing legacy preBuild steps.

Signed-off-by: Ali Caglayan <alizter@gmail.com>
2026-02-13 13:28:05 +01:00

22 lines
353 B
Nix

{
lib,
buildDunePackage,
dune,
dyn,
}:
buildDunePackage {
pname = "ocamlc-loc";
inherit (dune) src version;
dontAddPrefix = true;
propagatedBuildInputs = [ dyn ];
meta = {
description = "Parse ocaml compiler output into structured form";
maintainers = [ lib.maintainers.ulrikstrid ];
license = lib.licenses.mit;
};
}