biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / merlin-extend / default.nix
bloba8ccd2cf4a015bbecd02e0696fc7b1ff9ba8d673
1 { lib, buildDunePackage, fetchurl, cppo }:
3 buildDunePackage rec {
4   pname = "merlin-extend";
5   version = "0.6";
7   useDune2 = true;
9   src = fetchurl {
10     url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-v${version}.tbz";
11     sha256 = "0hvc4mz92x3rl2dxwrhvhzwl4gilnyvvwcqgr45vmdpyjyp3dwn2";
12   };
14   nativeBuildInputs = [ cppo ];
16   meta = with lib; {
17     homepage = "https://github.com/let-def/merlin-extend";
18     description = "SDK to extend Merlin";
19     license = licenses.mit;
20     maintainers = [ ];
21   };