51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, testers
|
|
, helm-ls
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "helm-ls";
|
|
version = "0.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mrjosh";
|
|
repo = "helm-ls";
|
|
rev = "v${version}";
|
|
hash = "sha256-GRnE9GC9pIcOfcVtlqx/yCkQz9rmxpkAfRGa6GZBzJE=";
|
|
};
|
|
|
|
vendorHash = "sha256-wMYrgAgAEgwfjMLP81H0cKWm/kh63ppDkSiymfsaj7U=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.Version=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/helm-ls $out/bin/helm_ls
|
|
installShellCompletion --cmd helm_ls \
|
|
--bash <($out/bin/helm_ls completion bash) \
|
|
--fish <($out/bin/helm_ls completion fish) \
|
|
--zsh <($out/bin/helm_ls completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = helm-ls;
|
|
command = "helm_ls version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Language server for Helm";
|
|
changelog = "https://github.com/mrjosh/helm-ls/releases/tag/v${version}";
|
|
homepage = "https://github.com/mrjosh/helm-ls";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ stehessel ];
|
|
mainProgram = "helm_ls";
|
|
};
|
|
}
|