nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "yatas";
9 version = "1.6.1";
10
11 src = fetchFromGitHub {
12 owner = "padok-team";
13 repo = "YATAS";
14 tag = "v${version}";
15 hash = "sha256-fkMrQqHtlZWoJZgSu1KeZ+p1pWXFUYYIUOkvd/DHx8k=";
16 };
17
18 vendorHash = "sha256-NJO/eankcoM9FsYz7jop1tY0ueeNyVG2TEip5F46haI=";
19
20 meta = {
21 description = "Tool to audit AWS infrastructure for misconfiguration or potential security issues";
22 homepage = "https://github.com/padok-team/YATAS";
23 changelog = "https://github.com/padok-team/YATAS/releases/tag/v${version}";
24 license = lib.licenses.asl20;
25 maintainers = with lib.maintainers; [ fab ];
26 mainProgram = "yatas";
27 };
28}