nixpkgs/pkgs/development/tools/ocaml/merlin/lib.nix
Vincent Laporte f09f7f1778 ocamlPackages.yojson: 1.7.0 → 2.0.2
ocamlPackages.merlin: 3.4.2 → 3.8.0

ocamlPackages.merlin: 4.5 → 4.6

ocamlPackages.{atd,atdgen}: 2.9.1 → 2.10.0

ocamlPackages.elpi: fix build with atd 2.10.0
2022-08-29 08:10:02 +02:00

14 lines
265 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib, buildDunePackage, merlin, csexp }:
buildDunePackage {
pname = "merlin-lib";
inherit (merlin) version src;
minimalOCamlVersion = "4.14";
propagatedBuildInputs = [ csexp ];
meta = merlin.meta // {
description = "Merlins libraries";
};
}