ldapmonitor: init at 1.3
This commit is contained in:
parent
0d27868e91
commit
2e4aac819f
2 changed files with 42 additions and 0 deletions
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 { };
|
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
|
||||||
|
|
||||||
|
ldapmonitor = callPackage ../tools/security/ldapmonitor { };
|
||||||
|
|
||||||
ldapvi = callPackage ../tools/misc/ldapvi { };
|
ldapvi = callPackage ../tools/misc/ldapvi { };
|
||||||
|
|
||||||
ldeep = python3Packages.callPackage ../tools/security/ldeep { };
|
ldeep = python3Packages.callPackage ../tools/security/ldeep { };
|
||||||
|
|
Loading…
Reference in a new issue