summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/merlin-extend/default.nix
blob: 6d4fcad0977500b7688059e62caeb7c07ebe5dfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildDunePackage, fetchurl, cppo }:

buildDunePackage rec {
  pname = "merlin-extend";
  version = "0.6";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-v${version}.tbz";
    sha256 = "0hvc4mz92x3rl2dxwrhvhzwl4gilnyvvwcqgr45vmdpyjyp3dwn2";
  };

  buildInputs = [ cppo ];

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