Unverified Commit e8eca336 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #210679 from r-ryantm/auto-update/ldapmonitor

ldapmonitor: 1.3 -> 1.4
parents a394fbcb 0c5c9345
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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 ];
  };