vimdoc-language-server: init at 0.1.2 (#502264)

This commit is contained in:
Sandro
2026-04-06 20:47:13 +00:00
committed by GitHub
2 changed files with 40 additions and 0 deletions
+6
View File
@@ -2985,6 +2985,12 @@
githubId = 127523;
name = "Herman Fries";
};
barrettruth = {
email = "br@barrettruth.com";
github = "barrettruth";
githubId = 62671086;
name = "Barrett Ruth";
};
BarrOff = {
name = "BarrOff";
github = "BarrOff";
@@ -0,0 +1,34 @@
{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "vimdoc-language-server";
version = "0.1.2";
src = fetchFromGitHub {
owner = "barrettruth";
repo = "vimdoc-language-server";
tag = "v${finalAttrs.version}";
hash = "sha256-4Uy9RUauRf9IjfykjrLRviKaMNX2fpmSdA/bvkYqgQY=";
};
cargoHash = "sha256-319K2fD8ae+MWgvNhmhgrD6syCDkO2FMgXr8z45CMr4=";
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Language server for vim help files";
homepage = "https://github.com/barrettruth/vimdoc-language-server";
changelog = "https://github.com/barrettruth/vimdoc-language-server/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ barrettruth ];
mainProgram = "vimdoc-language-server";
};
})