Merge pull request #214712 from fabaff/yatas

yatas: init at 1.3.3
This commit is contained in:
Fabian Affolter 2023-02-06 08:24:13 +01:00 committed by GitHub
commit 70325c2a0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "yatas";
version = "1.3.3";
src = fetchFromGitHub {
owner = "padok-team";
repo = "YATAS";
rev = "refs/tags/v${version}";
hash = "sha256-BjcqEO+rDEjPttGgTH07XyQKLcs/O+FarKTWjqXWQOo=";
};
vendorHash = "sha256-QOFt9h4Hdt+Mx82yw4mjAoyUXHeprvjRoLYLBnihwJo=";
meta = with lib; {
description = "Tool to audit AWS infrastructure for misconfiguration or potential security issues";
homepage = "https://github.com/padok-team/YATAS";
changelog = "https://github.com/padok-team/YATAS/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -38564,6 +38564,8 @@ with pkgs;
yersinia = callPackage ../tools/security/yersinia { };
yatas = callPackage ../tools/security/yatas { };
yaxg = callPackage ../tools/graphics/yaxg {};
zap = callPackage ../tools/networking/zap { };