From 29e71711d319860080f75abf0c4e949f62ac06ff Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 24 Mar 2025 15:49:31 +0000 Subject: [PATCH 1/2] pixelfed: 0.12.4 -> 0.12.5 --- pkgs/by-name/pi/pixelfed/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pi/pixelfed/package.nix b/pkgs/by-name/pi/pixelfed/package.nix index 899ddc3945b0..eea771074c57 100644 --- a/pkgs/by-name/pi/pixelfed/package.nix +++ b/pkgs/by-name/pi/pixelfed/package.nix @@ -9,16 +9,16 @@ php.buildComposerProject2 (finalAttrs: { pname = "pixelfed"; - version = "0.12.4"; + version = "0.12.5"; src = fetchFromGitHub { owner = "pixelfed"; repo = "pixelfed"; tag = "v${finalAttrs.version}"; - hash = "sha256-HEo0BOC/AEWhCApibxo2TBQF4kbLrbPEXqDygVQlVic="; + hash = "sha256-bPoYEPCWj7vAKDL/P4yjhrfp4HK9sbBh4eK0Co+xaZc="; }; - vendorHash = "sha256-aMKuuBTavNTIfYkuAn2vBFeh5xJd3BY8C+IVfglnS+g="; + vendorHash = "sha256-nJCxWIrsdGQxdiJe9skHv4AnqUpqZHuqXrl/cQrT9Ps="; postInstall = '' chmod -R u+w $out/share From 21e5db955858e4b58ef85e1cdfe33b2522ee1528 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 24 Mar 2025 17:23:50 +0100 Subject: [PATCH 2/2] pixelfed: fix passthru test inheritance --- pkgs/by-name/pi/pixelfed/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/pi/pixelfed/package.nix b/pkgs/by-name/pi/pixelfed/package.nix index eea771074c57..0c856f5b0cf4 100644 --- a/pkgs/by-name/pi/pixelfed/package.nix +++ b/pkgs/by-name/pi/pixelfed/package.nix @@ -35,7 +35,7 @@ php.buildComposerProject2 (finalAttrs: { ''; passthru = { - tests = { inherit (nixosTests) pixelfed; }; + tests = { inherit (nixosTests.pixelfed) standard; }; updateScript = nix-update-script { }; };