paperless-ngx: drop inactive maintainers, add myself to maintainers

This commit is contained in:
Sandro Jäckel 2024-08-23 15:44:14 +02:00
parent 9242a662c6
commit bb69775568
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
3 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ let
};
in
{
meta.maintainers = with maintainers; [ erikarvstedt Flakebi leona ];
meta.maintainers = with maintainers; [ leona SuperSandro2000 erikarvstedt ];
imports = [
(mkRenamedOptionModule [ "services" "paperless-ng" ] [ "services" "paperless" ])

View File

@ -1,6 +1,6 @@
import ./make-test-python.nix ({ lib, ... }: {
name = "paperless";
meta.maintainers = with lib.maintainers; [ erikarvstedt Flakebi ];
meta.maintainers = with lib.maintainers; [ leona SuperSandro2000 erikarvstedt ];
nodes = let self = {
simple = { pkgs, ... }: {

View File

@ -271,6 +271,6 @@ python.pkgs.buildPythonApplication rec {
changelog = "https://github.com/paperless-ngx/paperless-ngx/releases/tag/v${version}";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ lukegb gador erikarvstedt leona ];
maintainers = with maintainers; [ leona SuperSandro2000 erikarvstedt ];
};
}