commit
70325c2a0c
26
pkgs/tools/security/yatas/default.nix
Normal file
26
pkgs/tools/security/yatas/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user