forked from mirrors/nixpkgs
Merge pull request #177571 from fabaff/pyldapmonitor
ldapmonitor: init at 1.3
This commit is contained in:
commit
a71a3d60b0
40
pkgs/tools/security/ldapmonitor/default.nix
Normal file
40
pkgs/tools/security/ldapmonitor/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue