From 3d1e82b6cee04d5f5298c3063910b0870783e93b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Mancilla?= Date: Sat, 9 Jul 2022 23:24:46 -0400 Subject: [PATCH] traitor: mark as Linux-only It's in the description of the package: "Automatic Linux privilege escalation". --- pkgs/tools/security/traitor/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/traitor/default.nix b/pkgs/tools/security/traitor/default.nix index fd767ca5585..c809a5cbd14 100644 --- a/pkgs/tools/security/traitor/default.nix +++ b/pkgs/tools/security/traitor/default.nix @@ -18,7 +18,6 @@ buildGoModule rec { vendorSha256 = null; meta = with lib; { - broken = stdenv.isDarwin; description = "Automatic Linux privilege escalation"; longDescription = '' Automatically exploit low-hanging fruit to pop a root shell. Traitor packages @@ -26,6 +25,7 @@ buildGoModule rec { (including most of GTFOBins) in order to pop a root shell. ''; homepage = "https://github.com/liamg/traitor"; + platforms = platforms.linux; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; };