tfsec: 0.27.0 -> 0.36.10

TFSec github location changed. Also bumping the version to 0.36.10.

Signed-off-by: Le Anh Duc <anhdle14@icloud.com>
This commit is contained in:
Le Anh Duc 2020-12-12 02:59:04 +09:00
parent 0cb7962a12
commit 8cea3c4866
No known key found for this signature in database
GPG key ID: D30B5F1BCF43BFDC

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