credslayer: drop (#522352)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -571,6 +571,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
|
||||
|
||||
Reference in New Issue
Block a user