mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
26 lines
568 B
Nix
26 lines
568 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
cppo,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "merlin-extend";
|
|
version = "0.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/let-def/merlin-extend/releases/download/v${finalAttrs.version}/merlin-extend-${finalAttrs.version}.tbz";
|
|
hash = "sha256-R1WOfzC2RGLyucgvt/eHEzrPoNUTJFK2rXhI4LD013k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cppo ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/let-def/merlin-extend";
|
|
description = "SDK to extend Merlin";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
})
|