nixpkgs/pkgs/by-name/ad/ad-ldap-enum/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

50 lines
1.0 KiB
Nix

{ lib
, stdenvNoCC
, fetchFromGitHub
, python3
}:
stdenvNoCC.mkDerivation {
pname = "ad-ldap-enum";
version = "0-unstable-2023-02-10";
src = fetchFromGitHub {
owner = "CroweCybersecurity";
repo = "ad-ldap-enum";
rev = "60bc5bb111e2708d4bc2157f9ae3d5e0d06ece75";
hash = "sha256-b77yWmZGyOSQSwnRhGqo501jO6XYd+qpx1pb+zkduVI=";
};
buildInputs = [
(python3.withPackages (ps: with ps; [
argcomplete
ldap3
openpyxl
]))
];
installPhase = ''
runHook preInstall
install -Dm555 ad-ldap-enum.py $out/bin/ad-ldap-enum
runHook postInstall
'';
fixupPhase = ''
runHook preFixup
patchShebangs $out/bin/ad-ldap-enum
runHook postFixup
'';
meta = with lib; {
description = "LDAP based Active Directory user and group enumeration tool";
homepage = "https://github.com/CroweCybersecurity/ad-ldap-enum";
license = licenses.mit;
maintainers = with maintainers; [ h7x4 ];
platforms = python3.meta.platforms;
mainProgram = "ad-ldap-enum";
};
}