From 636a771192d0882c6906530bdde28caded9e2802 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 20 May 2026 21:47:13 +0200 Subject: [PATCH] credslayer: drop --- pkgs/by-name/cr/credslayer/package.nix | 63 -------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 63 deletions(-) delete mode 100644 pkgs/by-name/cr/credslayer/package.nix diff --git a/pkgs/by-name/cr/credslayer/package.nix b/pkgs/by-name/cr/credslayer/package.nix deleted file mode 100644 index e08e2309020a..000000000000 --- a/pkgs/by-name/cr/credslayer/package.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ - lib, - fetchFromGitHub, - python3, - wireshark-cli, -}: - -python3.pkgs.buildPythonApplication rec { - pname = "credslayer"; - version = "0.1.3"; - format = "setuptools"; - - src = fetchFromGitHub { - owner = "ShellCode33"; - repo = "CredSLayer"; - tag = "v${version}"; - hash = "sha256-gryV9MHULY6ZHy6YDFQDIkZsfIX8La0tHT0vrrQJNDQ="; - }; - - propagatedBuildInputs = with python3.pkgs; [ - pyshark - ]; - - nativeCheckInputs = with python3.pkgs; [ - py - pytestCheckHook - wireshark-cli - ]; - - enabledTestPaths = [ - "tests/tests.py" - ]; - - disabledTests = [ - # Requires a telnet setup - "test_telnet" - # stdout has all the correct data, but the underlying test code fails - # functionally everything seems to be intact - "http_get_auth" - "test_http_post_auth" - "test_ntlmssp" - ]; - - pythonImportsCheck = [ - "credslayer" - ]; - - postInstall = '' - wrapProgram $out/bin/credslayer \ - --prefix PATH : "${lib.makeBinPath [ wireshark-cli ]}" - ''; - - meta = { - description = "Extract credentials and other useful info from network captures"; - mainProgram = "credslayer"; - homepage = "https://github.com/ShellCode33/CredSLayer"; - license = with lib.licenses; [ gpl3Only ]; - maintainers = with lib.maintainers; [ fab ]; - # broken due to wireshark 4.4 bump - # see: https://github.com/NixOS/nixpkgs/pull/344914 - broken = true; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index aeaff1d48527..43de7028ad3b 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -558,6 +558,7 @@ mapAliases { crabfit-api = throw "'crabfit-api' has been removed because it is unmaintained upstream and insecure."; # Added 2025-11-29 crabfit-frontend = throw "'crabfit-frontend' has been removed because it is unmaintained upstream and it is to be used with 'crabfit-api', which is insecure."; # Added 2025-11-29 create-cycle-app = throw "'create-cycle-app' has been removed because it is unmaintained and has issues installing with recent nodejs versions."; # Added 2025-11-01 + credslayer = throw "'credslayer' has been removed as it was broken for 2 years"; # Added 2026-05-20 cringify = throw "'cringify' has been removed as it is unmaintained"; # Added 2025-12-16 crispyDoom = throw "'crispyDoom' has been renamed to/replaced by 'crispy-doom'"; # Converted to throw 2025-10-27 critcl = throw "'critcl' has been renamed to/replaced by 'tclPackages.critcl'"; # Converted to throw 2025-10-27