summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/merlin/lib.nix
blob: 27c8035a5e3b4f322a509e11f8ccef8335d59df5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, buildDunePackage, merlin, csexp }:

buildDunePackage {
  pname = "merlin-lib";
  inherit (merlin) version src;

  minimalOCamlVersion = "4.14";

  propagatedBuildInputs = [ csexp ];

  meta = merlin.meta // {
    description = "Merlin’s libraries";
  };
}