Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
samba,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "enum4linux-ng";
|
|
version = "1.3.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cddmp";
|
|
repo = "enum4linux-ng";
|
|
tag = "v${version}";
|
|
hash = "sha256-Crd5sc0sYvYufN0bK4Qh7iSy22utQet6X1UlPlS48XI=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = [
|
|
samba
|
|
]
|
|
++ (with python3.pkgs; [
|
|
impacket
|
|
ldap3
|
|
pyyaml
|
|
]);
|
|
|
|
# It's only a script and not a Python module. Project has no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Windows/Samba enumeration tool";
|
|
longDescription = ''
|
|
enum4linux-ng.py is a rewrite of Mark Lowe's enum4linux.pl, a tool for
|
|
enumerating information from Windows and Samba systems.
|
|
'';
|
|
homepage = "https://github.com/cddmp/enum4linux-ng";
|
|
changelog = "https://github.com/cddmp/enum4linux-ng/releases/tag/${src.tag}";
|
|
license = with lib.licenses; [ gpl3Plus ];
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "enum4linux-ng";
|
|
};
|
|
}
|