about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Brandes <florian.brandes@posteo.de>2022-11-01 10:01:16 +0100
committerFlorian Brandes <florian.brandes@posteo.de>2022-11-01 10:01:16 +0100
commit4655c35887cce95019de632dca474c52ee0f7617 (patch)
treeb842485d7f2f825ee81d40bcc0a91a773692fe98
parentafcb9e9c281490ba555038cce367f06d154e653a (diff)
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 <florian.brandes@posteo.de>
-rw-r--r--pkgs/tools/security/credslayer/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/security/credslayer/default.nix b/pkgs/tools/security/credslayer/default.nix
index 223f9dd70eb9a..f43e216868ce8 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;
   };
 }