terraform-ls: init at 0.3.2
Signed-off-by: Martin Baillie <martin@baillie.email>
This commit is contained in:
parent
3437d3c64f
commit
66dcfc613e
24
pkgs/development/tools/misc/terraform-ls/default.nix
Normal file
24
pkgs/development/tools/misc/terraform-ls/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
pname = "terraform-ls";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hashicorp";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "11776nq1ixrg791xlmryjxldsc8gn69j1fc0wd6cdywy8yp2lh4w";
|
||||||
|
};
|
||||||
|
|
||||||
|
goPackagePath = "github.com/hashicorp/terraform-ls";
|
||||||
|
|
||||||
|
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Terraform Language Server (official)";
|
||||||
|
homepage = "https://github.com/hashicorp/terraform-ls";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ mbaillie ];
|
||||||
|
};
|
||||||
|
}
|
@ -11057,6 +11057,7 @@ in
|
|||||||
terracognita = callPackage ../development/tools/misc/terracognita { };
|
terracognita = callPackage ../development/tools/misc/terracognita { };
|
||||||
|
|
||||||
terraform-lsp = callPackage ../development/tools/misc/terraform-lsp { };
|
terraform-lsp = callPackage ../development/tools/misc/terraform-lsp { };
|
||||||
|
terraform-ls = callPackage ../development/tools/misc/terraform-ls { };
|
||||||
|
|
||||||
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
|
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
|
||||||
texinfo4 = texinfo413;
|
texinfo4 = texinfo413;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user