summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-14 22:06:20 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-14 22:06:20 +0200
commit43422fc81c183014743f2e9463451aab055c6f88 (patch)
tree27a3431dbd3f1085fa5f73d55d9f89880df0fd61 /pkgs
parentcd4d1621cd0e9cb591c81479d38b960431675ce0 (diff)
downloadnixpkgs-43422fc81c183014743f2e9463451aab055c6f88.tar
nixpkgs-43422fc81c183014743f2e9463451aab055c6f88.tar.gz
nixpkgs-43422fc81c183014743f2e9463451aab055c6f88.tar.bz2
nixpkgs-43422fc81c183014743f2e9463451aab055c6f88.tar.lz
nixpkgs-43422fc81c183014743f2e9463451aab055c6f88.tar.xz
nixpkgs-43422fc81c183014743f2e9463451aab055c6f88.tar.zst
nixpkgs-43422fc81c183014743f2e9463451aab055c6f88.zip
tfsec: 0.45.3 -> 0.48.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/analysis/tfsec/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/development/tools/analysis/tfsec/default.nix b/pkgs/development/tools/analysis/tfsec/default.nix
index 2d266ffb90b..7b028e28ed5 100644
--- a/pkgs/development/tools/analysis/tfsec/default.nix
+++ b/pkgs/development/tools/analysis/tfsec/default.nix
@@ -1,17 +1,20 @@
-{ lib, buildGoPackage, fetchFromGitHub }:
+{ lib
+, buildGoPackage
+, fetchFromGitHub
+}:
 
 buildGoPackage rec {
   pname = "tfsec";
-  version = "0.45.3";
+  version = "0.48.2";
 
   src = fetchFromGitHub {
-    owner = "tfsec";
+    owner = "aquasecurity";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-I0TOddYO++tw26gS/h15FSATqCjdQfQXVYSTkV+r5HM=";
+    sha256 = "sha256-ZJHm+shCbyM2cyLW5ZgrqLMwnnvp7IOHI5+Ta2gdaNQ=";
   };
 
-  goPackagePath = "github.com/tfsec/tfsec";
+  goPackagePath = "github.com/aquasecurity/tfsec";
 
   ldflags = [
     "-w"
@@ -20,9 +23,9 @@ buildGoPackage rec {
   ];
 
   meta = with lib; {
-    homepage = "https://github.com/tfsec/tfsec";
-    description = "Static analysis powered security scanner for your terraform code";
+    description = "Static analysis powered security scanner for terraform code";
+    homepage = "https://github.com/aquasecurity/tfsec";
     license = licenses.mit;
-    maintainers = with maintainers; [ marsam ];
+    maintainers = with maintainers; [ fab marsam ];
   };
 }