8 python3.pkgs.buildPythonApplication rec {
10 version = "unstable-2022-04-01";
13 src = fetchFromGitHub {
14 owner = "SecuProject";
16 rev = "0e3576eca1d987d3ef22d53fc725189bb301e804";
17 hash = "sha256-8s4Kmt4ZjYbQGGVDWKfuRZ6kthcL8FiQytoq9Koy7Kc=";
20 propagatedBuildInputs = with python3.pkgs; [
31 # Add shebang so we can patch it
32 sed -i -e '1i#!/usr/bin/python' ADenum.py
33 patchShebangs ADenum.py
34 install -vD ADenum.py $out/bin/adenum
39 # Project has no tests
43 description = "Tool to find misconfiguration through LDAP";
44 homepage = "https://github.com/SecuProject/ADenum";
45 license = with licenses; [ gpl3Only ];
46 maintainers = with maintainers; [ fab ];