3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/jsonnet-language-server/default.nix
2022-10-22 11:30:36 +08:00

27 lines
698 B
Nix

{ stdenv, lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "jsonnet-language-server";
version = "0.10.0";
src = fetchFromGitHub {
owner = "grafana";
repo = "jsonnet-language-server";
rev = "v${version}";
sha256 = "sha256-RpjLIz5lfdWULTDTMDVYvTTSaQWvYbvpxvs4L5UldjM=";
};
vendorSha256 = "sha256-imFr4N/YmpwjVZSCBHG7cyJt4RKTn+T7VPdL8R/ba5o=";
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 ];
};
}