aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/merlin-extend/default.nix
blob: 752fbc039fa22b363b47195b47875c4d9bdb80ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildDunePackage, fetchurl, cppo }:

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

  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 ];
  };
}