qv2ray: unstable-2023-06-09 -> unstable-2023-07-11

https://github.com/Qv2ray/Qv2ray/commit/b3080564809dd8aef864a54ca1b79f0984fe986b

Fixes:

/build/source/src/base/Qv2rayLog.hpp:17:29: error: expected primary-expression before ',' token
17 | #define ___LOG_EXPAND(___x) , QPair<std::string, decltype(___x)>(std::string(#___x), [&] { return ___x; }())
| ^
/build/source/src/base/Qv2rayLog.hpp:17:63: error: expected primary-expression before ')' token
17 | #define ___LOG_EXPAND(___x) , QPair<std::string, decltype(___x)>(std::string(#___x), [&] { return ___x; }())
| ^
/build/source/src/base/Qv2rayLog.hpp:17:64: error: template argument 2 is invalid
17 | #define ___LOG_EXPAND(___x) , QPair<std::string, decltype(___x)>(std::string(#___x), [&] { return ___x; }())
| ^

+3 -3
+3 -3
pkgs/applications/networking/qv2ray/default.nix
··· 21 21 22 22 mkDerivation rec { 23 23 pname = "qv2ray"; 24 - version = "unstable-2023-06-09"; 24 + version = "unstable-2023-07-11"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "Qv2ray"; 28 28 repo = "Qv2ray"; 29 - rev = "aea9981cc28fe25de55207b93d86036b30d467d2"; 30 - hash = "sha256-ySXAF6fkkKsafuSa3DxkOuRjSyiCDUZRevcfJRp7LPM="; 29 + rev = "b3080564809dd8aef864a54ca1b79f0984fe986b"; 30 + hash = "sha256-LwBjuX5x3kQcdEfPLEirWpkMqOigkhNoh/VNmBfPAzw="; 31 31 fetchSubmodules = true; 32 32 }; 33 33