Commit 460a5213 authored by Yuri Albuquerque's avatar Yuri Albuquerque Committed by Vincent Laporte
Browse files

ocamlPackages.ocamlmerlin-mlx: init at 0.9

parent 07587f91
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{
  lib,
  mlx,
  buildDunePackage,
  ppxlib,
  merlin-lib,
  cppo,
  csexp,
  menhir,
  odoc,
}:
buildDunePackage {
  pname = "ocamlmerlin-mlx";

  inherit (mlx) version src;

  minimalOCamlVersion = "4.14";

  buildInputs = [
    ppxlib
    merlin-lib
    csexp
    menhir
    odoc
  ];

  nativeBuildInputs = [
    cppo
  ];

  meta = {
    description = "Merlin support for MLX OCaml dialect";
    homepage = "https://github.com/ocaml-mlx/mlx";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.Denommus ];
    mainProgram = "ocamlmerlin-mlx";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1371,6 +1371,8 @@ let

    ocamline = callPackage ../development/ocaml-modules/ocamline { };

    ocamlmerlin-mlx = callPackage ../development/ocaml-modules/mlx/ocamlmerlin-mlx.nix { };

    ocamlmod = callPackage ../development/tools/ocaml/ocamlmod { };

    ocamlnet = callPackage ../development/ocaml-modules/ocamlnet { };