Merge pull request #257067 from NixOS/bump/php/8-3-rc2

php83: 8.3.0RC1 -> 8.3.0RC2

authored by Elis Hirwing and committed by GitHub d84cc41f 981fa9c2

+3 -3
+3 -3
pkgs/development/interpreters/php/8.3.nix
··· 2 3 let 4 base = (callPackage ./generic.nix (_args // { 5 - version = "8.3.0RC1"; 6 hash = null; 7 })).overrideAttrs (oldAttrs: { 8 src = fetchurl { 9 - url = "https://downloads.php.net/~jakub/php-8.3.0RC1.tar.xz"; 10 - hash = "sha256-pWnkxSIhzKU8Cp+AiGzqhqRtWoJu+zBfCM45n2ugH7c="; 11 }; 12 }); 13 in
··· 2 3 let 4 base = (callPackage ./generic.nix (_args // { 5 + version = "8.3.0RC2"; 6 hash = null; 7 })).overrideAttrs (oldAttrs: { 8 src = fetchurl { 9 + url = "https://downloads.php.net/~eric/php-8.3.0RC2.tar.xz"; 10 + hash = "sha256-0Lo9msTyjfU9kuq0QkvUv4yeshM2tUizMJb9oCggMtw="; 11 }; 12 }); 13 in