lol

authz0: init at 1.1.1

+28
+25
pkgs/tools/security/authz0/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "authz0"; 8 + version = "1.1.1"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "hahwul"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-8WtvUeHP7fJ1/G+UB1QLCSSNx7XA+vREcwJxoMeQsgM="; 15 + }; 16 + 17 + vendorSha256 = "sha256-EQhvHu/LXZtVQ+MzjB96K0MUM4THiRDe1FkAATfGhdw="; 18 + 19 + meta = with lib; { 20 + description = "Automated authorization test tool"; 21 + homepage = "https://github.com/hahwul/authz0"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ fab ]; 24 + }; 25 + }
+3
pkgs/top-level/all-packages.nix
··· 208 208 209 209 appthreat-depscan = callPackage ../development/tools/appthreat-depscan { }; 210 210 211 + 211 212 authy = callPackage ../applications/misc/authy { }; 213 + 214 + authz0 = callPackage ../tools/security/authz0 { }; 212 215 213 216 avro-tools = callPackage ../development/tools/avro-tools { }; 214 217