Merge pull request #106779 from anhdle14/tfsec-0.36.10

tfsec: 0.27.0 -> 0.36.10
This commit is contained in:
Mario Rodas 2020-12-26 21:57:26 -05:00 committed by GitHub
commit e8ee6c3511
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,21 +2,21 @@
buildGoPackage rec {
pname = "tfsec";
version = "0.27.0";
version = "0.36.10";
src = fetchFromGitHub {
owner = "liamg";
owner = "tfsec";
repo = pname;
rev = "v${version}";
sha256 = "12n6l18g0kg28clzyzwc2lq9rnch3vshp07isgvfp7193bhf8hyv";
sha256 = "11kv13d4cw515r79azfha1ksmvsha1rvg0jak9nvz9ggivyn0s7a";
};
goPackagePath = "github.com/liamg/tfsec";
goPackagePath = "github.com/tfsec/tfsec";
buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/version.Version=${version}" ];
meta = with lib; {
homepage = "https://github.com/liamg/tfsec";
homepage = "https://github.com/tfsec/tfsec";
description = "Static analysis powered security scanner for your terraform code";
license = licenses.mit;
maintainers = [ maintainers.marsam ];