From 77a4902508ec390c891a10299fb7be953b450d84 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 2 Aug 2024 16:41:05 +0200 Subject: [PATCH 1/2] pixelfed: drop raitobezarius as a maintainer I'm not using seriously Pixelfed those days, this software is non-trivial and the NixOS module seems to have some sharp edges. Change-Id: Ie93df9dcb00d0a58bd5e4165e377979c489af0b0 Signed-off-by: Raito Bezarius --- nixos/tests/web-apps/pixelfed/standard.nix | 2 +- pkgs/servers/web-apps/pixelfed/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/web-apps/pixelfed/standard.nix b/nixos/tests/web-apps/pixelfed/standard.nix index 9260e27af960..3e56dda8f07c 100644 --- a/nixos/tests/web-apps/pixelfed/standard.nix +++ b/nixos/tests/web-apps/pixelfed/standard.nix @@ -1,7 +1,7 @@ import ../../make-test-python.nix ({pkgs, ...}: { name = "pixelfed-standard"; - meta.maintainers = with pkgs.lib.maintainers; [ raitobezarius ]; + meta.maintainers = [ ]; nodes = { server = { pkgs, ... }: { diff --git a/pkgs/servers/web-apps/pixelfed/default.nix b/pkgs/servers/web-apps/pixelfed/default.nix index 0d696b33a639..0243b05f6df0 100644 --- a/pkgs/servers/web-apps/pixelfed/default.nix +++ b/pkgs/servers/web-apps/pixelfed/default.nix @@ -43,7 +43,7 @@ php.buildComposerProject (finalAttrs: { description = "Federated image sharing platform"; license = licenses.agpl3Only; homepage = "https://pixelfed.org/"; - maintainers = with maintainers; [ raitobezarius ]; + maintainers = [ ]; platforms = php.meta.platforms; }; }) From a2424528a569987f39d38742454c09d2f4f6aa6f Mon Sep 17 00:00:00 2001 From: Aleksana Date: Sun, 4 Aug 2024 17:52:17 +0800 Subject: [PATCH 2/2] nixosTests.pixelfed: remove unused function argument --- nixos/tests/web-apps/pixelfed/standard.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nixos/tests/web-apps/pixelfed/standard.nix b/nixos/tests/web-apps/pixelfed/standard.nix index 3e56dda8f07c..c575ee0b0f76 100644 --- a/nixos/tests/web-apps/pixelfed/standard.nix +++ b/nixos/tests/web-apps/pixelfed/standard.nix @@ -1,5 +1,4 @@ -import ../../make-test-python.nix ({pkgs, ...}: -{ +import ../../make-test-python.nix { name = "pixelfed-standard"; meta.maintainers = [ ]; @@ -35,4 +34,4 @@ import ../../make-test-python.nix ({pkgs, ...}: # server.succeed("pixelfed-manage passport:client --personal") # server.succeed("curl -H 'Host: pixefed.local' -H 'Accept: application/json' -H 'Authorization: Bearer secret' -F'status'='test' http://localhost/api/v1/statuses") ''; -}) +}