Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "yatas"; 8 version = "1.5.1"; 9 10 src = fetchFromGitHub { 11 owner = "padok-team"; 12 repo = "YATAS"; 13 rev = "refs/tags/v${version}"; 14 hash = "sha256-gw4aZ7SLUz5WLUb1z4zDtI6Ca0tEWhE5wobp5NRvjkg="; 15 }; 16 17 vendorHash = "sha256-zp5EVJe5Q6o6C0CZ8u+oEFEOy0NU5SgVN+cSc6A/jZ4="; 18 19 meta = with lib; { 20 description = "Tool to audit AWS infrastructure for misconfiguration or potential security issues"; 21 homepage = "https://github.com/padok-team/YATAS"; 22 changelog = "https://github.com/padok-team/YATAS/releases/tag/v${version}"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ fab ]; 25 }; 26}