mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
27 lines
697 B
Nix
27 lines
697 B
Nix
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jsonnet-language-server";
|
|
version = "0.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grafana";
|
|
repo = "jsonnet-language-server";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-hI8eGfHC7la52nImg6BaBxdl9oD/J9q3F3+xbsHrn30=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-UEQogVVlTVnSRSHH2koyYaR9l50Rn3075opieK5Fu7I=";
|
|
|
|
ldflags = [
|
|
"-s -w -X 'main.version=${version}'"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/grafana/jsonnet-language-server";
|
|
description = "Language Server Protocol server for Jsonnet";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ hardselius ];
|
|
};
|
|
}
|