1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5 cppo,
6}:
7
8buildDunePackage rec {
9 pname = "merlin-extend";
10 version = "0.6.2";
11
12 src = fetchurl {
13 url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-${version}.tbz";
14 hash = "sha256-R1WOfzC2RGLyucgvt/eHEzrPoNUTJFK2rXhI4LD013k=";
15 };
16
17 nativeBuildInputs = [ cppo ];
18
19 meta = with lib; {
20 homepage = "https://github.com/let-def/merlin-extend";
21 description = "SDK to extend Merlin";
22 license = licenses.mit;
23 maintainers = [ ];
24 };
25}