Files

47 lines
1.1 KiB
Nix

{
lib,
fetchFromGitHub,
python3,
samba,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "enum4linux-ng";
version = "1.3.10";
pyproject = true;
src = fetchFromGitHub {
owner = "cddmp";
repo = "enum4linux-ng";
tag = "v${finalAttrs.version}";
hash = "sha256-936hLZ1O03r9aHOtHaAZ885O56TUAYNlG94UxOfoDpk=";
};
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/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "enum4linux-ng";
};
})