tt-rss: unstable-2022-10-15 -> unstable-2023-04-13, module use PHP 8.1

Upstream Docker images also uses PHP 8.1.

Diff:
https://git.tt-rss.org/fox/tt-rss.git/diff/?id=0578bf802571781a0a7e3debbbec66437a7d28b4&id2=602e8684258062937d7f554ab7889e8e02318c96

+5 -5
+1 -1
nixos/modules/services/web-apps/tt-rss.nix
··· 534 services.phpfpm.pools = mkIf (cfg.pool == "${poolName}") { 535 ${poolName} = { 536 inherit (cfg) user; 537 - phpPackage = pkgs.php80; 538 settings = mapAttrs (name: mkDefault) { 539 "listen.owner" = "nginx"; 540 "listen.group" = "nginx";
··· 534 services.phpfpm.pools = mkIf (cfg.pool == "${poolName}") { 535 ${poolName} = { 536 inherit (cfg) user; 537 + phpPackage = pkgs.php81; 538 settings = mapAttrs (name: mkDefault) { 539 "listen.owner" = "nginx"; 540 "listen.group" = "nginx";
+4 -4
pkgs/servers/tt-rss/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tt-rss"; 5 - version = "unstable-2022-10-15"; 6 7 src = fetchgit { 8 url = "https://git.tt-rss.org/fox/tt-rss.git"; 9 - rev = "602e8684258062937d7f554ab7889e8e02318c96"; 10 - sha256 = "sha256-vgRaxo998Gx9rVeZZl52jppK1v11jpEK0J0NoDMT44I="; 11 }; 12 13 installPhase = '' ··· 18 19 # see the code of Config::get_version(). you can check that the version in 20 # the footer of the preferences pages is not UNKNOWN 21 - echo "22.10" > $out/version_static.txt 22 23 runHook postInstall 24 '';
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tt-rss"; 5 + version = "unstable-2023-04-13"; 6 7 src = fetchgit { 8 url = "https://git.tt-rss.org/fox/tt-rss.git"; 9 + rev = "0578bf802571781a0a7e3debbbec66437a7d28b4"; 10 + hash = "sha256-j6R1QoH8SzUtyI3rGE6rHriboAfApAo/Guw8WbJ7LqU="; 11 }; 12 13 installPhase = '' ··· 18 19 # see the code of Config::get_version(). you can check that the version in 20 # the footer of the preferences pages is not UNKNOWN 21 + echo "23.04" > $out/version_static.txt 22 23 runHook postInstall 24 '';