summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/merlin_extend/default.nix
blob: 79b8b69bbb575a02e0cd7a2559161f26ff44d05b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, buildOcaml, fetchFromGitHub, cppo }:

buildOcaml rec {
  name = "merlin_extend";
  version = "0.3";

  minimumSupportedOcamlVersion = "4.02";

  src = fetchFromGitHub {
    owner = "let-def";
    repo = "merlin-extend";
    sha256 = "1z6hybcb7ry0bkzjd0r2dlcgjnhhxdsr06x3h03sj7h5fihsc7vd";
    rev = "v${version}";
  };

  buildInputs = [ cppo ];

  createFindlibDestdir = true;

  meta = with stdenv.lib; {
    homepage = https://github.com/let-def/merlin-extend;
    description = "SDK to extend Merlin";
    license = licenses.mit;
    maintainers = [ maintainers.volth ];
  };
}