Merge pull request #65265 from marsam/init-terraform-lsp

terraform-lsp: init at 0.0.5
This commit is contained in:
Robin Gloster 2019-07-22 18:46:37 +00:00 committed by GitHub
commit 75151fe85d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View File

@ -9803,6 +9803,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 { };