nixpkgs/pkgs/development/tools/analysis/tflint/default.nix

26 lines
721 B
Nix
Raw Normal View History

2019-06-17 04:02:03 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tflint";
version = "0.13.3";
2019-06-17 04:02:03 +01:00
src = fetchFromGitHub {
owner = "terraform-linters";
2019-06-17 04:02:03 +01:00
repo = pname;
rev = "v${version}";
sha256 = "13azczm5lg9v5mvf1jx165qy2nj2941qlr9vvxa7q3gqmhxcg271";
2019-06-17 04:02:03 +01:00
};
modSha256 = "0xckzyfc144bc212amw1n63jkmdljbmj0rq0midr37h6bg5a10q3";
2019-06-17 04:02:03 +01:00
subPackages = [ "." ];
meta = with lib; {
description = "Terraform linter focused on possible errors, best practices, and so on";
homepage = "https://github.com/terraform-linters/tflint";
changelog = "https://github.com/terraform-linters/tflint/releases/tag/v${version}";
2019-06-17 04:02:03 +01:00
license = licenses.mpl20;
maintainers = [ maintainers.marsam ];
};
}