From 4655c35887cce95019de632dca474c52ee0f7617 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Tue, 1 Nov 2022 10:01:16 +0100 Subject: [PATCH] credslayer: mark as broken credslayer hasn't been updated since 2020 and is incompatible with newer versions of pyshark. If the upstream issue gets fixed the `broken` attribute can be removed. Signed-off-by: Florian Brandes --- pkgs/tools/security/credslayer/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/security/credslayer/default.nix b/pkgs/tools/security/credslayer/default.nix index 223f9dd70eb9..f43e216868ce 100644 --- a/pkgs/tools/security/credslayer/default.nix +++ b/pkgs/tools/security/credslayer/default.nix @@ -48,5 +48,8 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/ShellCode33/CredSLayer"; license = with licenses; [ gpl3Only ]; maintainers = with maintainers; [ fab ]; + # Upstream issue https://github.com/ShellCode33/CredSLayer/issues/16 + # This package works only with pyshark < 0.5 + broken = true; }; }