Commit d08e2fa8 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

yatas: init at 1.3.3

parent 5a6b558d
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -38538,6 +38538,8 @@ with pkgs;
  yersinia = callPackage ../tools/security/yersinia { };
  yatas = callPackage ../tools/security/yatas { };
  yaxg = callPackage ../tools/graphics/yaxg {};
  zap = callPackage ../tools/networking/zap { };