dotfiles/packages/helm-ls/default.nix

27 lines
586 B
Nix
Raw Normal View History

2023-02-10 07:46:37 +01:00
{
buildGoModule,
fetchFromGitHub,
lib,
...
}:
2023-02-09 16:42:53 +01:00
buildGoModule rec {
pname = "helm-ls";
version = "20220912";
src = fetchFromGitHub {
owner = "mrjosh";
repo = "helm-ls";
rev = "1552f4be6b43eb3fc6c61ce056f1d28f36650c62";
sha256 = "sha256-YSK7PBsk/NXsM7bFg6ebqiYDH94vsK45vMpZtDJqLnk=";
};
vendorSha256 = "sha256-EqZlmOoQtC3Iuf0LG2PL0K2pluGqbyA6132lzgF4+ic=";
meta = with lib; {
description = "helm language server";
homepage = "https://github.com/mrjosh/helm-ls";
license = licenses.mit;
2023-02-10 07:46:37 +01:00
maintainers = [maintainers.nekowinston];
2023-02-09 16:42:53 +01:00
};
}