ldapmonitor: init at 1.3

This commit is contained in:
Fabian Affolter 2022-06-13 23:53:32 +02:00
parent 0d27868e91
commit 2e4aac819f
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "ldapmonitor";
version = "1.3";
format = "other";
src = fetchFromGitHub {
owner = "p0dalirius";
repo = pname;
rev = version;
hash = "sha256-lwTXvrnOVodCUQtR8FmCXiPuZ1Wx1ySfDKghpLXNuI4=";
};
sourceRoot = "${src.name}/python";
propagatedBuildInputs = with python3.pkgs; [
impacket
ldap
ldap3
];
installPhase = ''
runHook preInstall
install -vD pyLDAPmonitor.py $out/bin/ldapmonitor
runHook postInstall
'';
meta = with lib; {
description = "Tool to monitor creation, deletion and changes to LDAP objects";
homepage = "https://github.com/p0dalirius/LDAPmonitor";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -7934,6 +7934,8 @@ with pkgs;
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
ldapmonitor = callPackage ../tools/security/ldapmonitor { };
ldapvi = callPackage ../tools/misc/ldapvi { };
ldeep = python3Packages.callPackage ../tools/security/ldeep { };