nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildDunePackage, fetchurl, cppo }:
2
3buildDunePackage rec {
4 pname = "merlin-extend";
5 version = "0.6";
6
7 useDune2 = true;
8
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 };
13
14 nativeBuildInputs = [ cppo ];
15
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 };
22}