about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-01-15 10:11:55 +0100
committerGitHub <noreply@github.com>2023-01-15 10:11:55 +0100
commite8eca3365d3ec607fc16b958deb0357a4dde4717 (patch)
tree948bfcb7a2d7e6793437dfac81ebc72805f82c45 /pkgs/tools/security
parenta394fbcb94b2e62071c3c7d6174f855a6568f46a (diff)
parent0c5c934596bc5aea590016b77be51ca451e396fb (diff)
Merge pull request #210679 from r-ryantm/auto-update/ldapmonitor
ldapmonitor: 1.3 -> 1.4
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/ldapmonitor/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/ldapmonitor/default.nix b/pkgs/tools/security/ldapmonitor/default.nix
index 410aa4ca87ed8..51295d2841a9f 100644
--- a/pkgs/tools/security/ldapmonitor/default.nix
+++ b/pkgs/tools/security/ldapmonitor/default.nix
@@ -5,14 +5,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "ldapmonitor";
-  version = "1.3";
+  version = "1.4";
   format = "other";
 
   src = fetchFromGitHub {
     owner = "p0dalirius";
     repo = pname;
-    rev = version;
-    hash = "sha256-lwTXvrnOVodCUQtR8FmCXiPuZ1Wx1ySfDKghpLXNuI4=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-BmTj/6dOUYfia6wO4nvkEW01MIC9TuBk4kYAsVHMsWY=";
   };
 
   sourceRoot = "${src.name}/python";
@@ -34,6 +34,7 @@ python3.pkgs.buildPythonApplication rec {
   meta = with lib; {
     description = "Tool to monitor creation, deletion and changes to LDAP objects";
     homepage = "https://github.com/p0dalirius/LDAPmonitor";
+    changelog = "https://github.com/p0dalirius/LDAPmonitor/releases/tag/${version}";
     license = with licenses; [ gpl3Only ];
     maintainers = with maintainers; [ fab ];
   };