nixpkgs/pkgs/development/tools/jsonnet-language-server/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
698 B
Nix
Raw Normal View History

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