photoprism: add ipetkov as maintainer

This commit is contained in:
Ivan Petkov
2026-07-18 17:07:16 -07:00
parent 372c122028
commit 401b914c7d
3 changed files with 12 additions and 3 deletions

View File

@@ -58,6 +58,9 @@ buildGoModule {
homepage = "https://photoprism.app";
description = "Photoprism's backend";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ benesim ];
maintainers = with lib.maintainers; [
benesim
ipetkov
];
};
}

View File

@@ -32,6 +32,9 @@ buildNpmPackage {
homepage = "https://photoprism.app";
description = "Photoprism's frontend";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ benesim ];
maintainers = with lib.maintainers; [
benesim
ipetkov
];
};
}

View File

@@ -103,7 +103,10 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://photoprism.app";
description = "Personal Photo Management powered by Go and Google TensorFlow";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ benesim ];
maintainers = with lib.maintainers; [
benesim
ipetkov
];
mainProgram = "photoprism";
};
})