mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
terraform-lsp: init at 0.0.5
This commit is contained in:
parent
62cb4f7228
commit
dd6eea86f8
22
pkgs/development/tools/misc/terraform-lsp/default.nix
Normal file
22
pkgs/development/tools/misc/terraform-lsp/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "terraform-lsp";
|
||||
version = "0.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "juliosueiras";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "018ypvmd9cwys5l7rm1c7b9jf8fljdk0m22id32d88jiw4iwq44m";
|
||||
};
|
||||
|
||||
modSha256 = "1196fn69nnplj7sz5mffawf58j9n7h211shv795gknvfnwavh344";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Language Server Protocol for Terraform";
|
||||
homepage = "https://github.com/juliosueiras/terraform-lsp";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
};
|
||||
}
|
|
@ -9801,6 +9801,8 @@ in
|
|||
|
||||
teensy-loader-cli = callPackage ../development/tools/misc/teensy-loader-cli { };
|
||||
|
||||
terraform-lsp = callPackage ../development/tools/misc/terraform-lsp { };
|
||||
|
||||
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
|
||||
texinfo4 = texinfo413;
|
||||
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
|
||||
|
|
Loading…
Reference in a new issue