moonlight-qt: 5.0.1 -> 6.0.0

This commit is contained in:
Zach Mitchell 2024-06-13 19:11:19 +08:00 committed by Zhong Jianxin
parent 24929b4929
commit aeba240cf3
3 changed files with 14 additions and 11 deletions

View File

@ -6,6 +6,7 @@
- [AMDVLK](https://github.com/GPUOpen-Drivers/AMDVLK), AMD's open source Vulkan driver, is now available to be configured as `hardware.amdgpu.amdvlk` option.
This also allows configuring runtime settings of AMDVLK and enabling experimental features.
- The `moonlight-qt` package ([Moonlight game streaming](https://moonlight-stream.org/)) now has HDR support on Linux systems.
## New Services {#sec-release-24.11-new-services}

View File

@ -1,8 +1,10 @@
--- a/app/app.pro 2023-06-24 19:10:00.653377668 +0800
+++ b/app/app.pro 2023-06-24 19:20:06.632188299 +0800
@@ -49,19 +49,8 @@
INCLUDEPATH += $$PWD/../libs/windows/include
LIBS += ws2_32.lib winmm.lib dxva2.lib ole32.lib gdi32.lib user32.lib d3d9.lib dwmapi.lib dbghelp.lib
diff --git a/app/app.pro b/app/app.pro
index f8201b53..538cf9b2 100644
--- a/app/app.pro
+++ b/app/app.pro
@@ -52,19 +52,8 @@ win32 {
# Work around a conflict with math.h inclusion between SDL and Qt 6
DEFINES += _USE_MATH_DEFINES
}
-macx {
- INCLUDEPATH += $$PWD/../libs/mac/include
@ -21,12 +23,12 @@
CONFIG += link_pkgconfig
PKGCONFIG += openssl sdl2 SDL2_ttf opus
@@ -120,13 +109,12 @@
@@ -152,13 +141,12 @@ win32:!winrt {
CONFIG += soundio discord-rpc
}
macx {
- LIBS += -lssl -lcrypto -lavcodec.60 -lavutil.58 -lopus -framework SDL2 -framework SDL2_ttf
LIBS += -lobjc -framework VideoToolbox -framework AVFoundation -framework CoreVideo -framework CoreGraphics -framework CoreMedia -framework AppKit -framework Metal
- LIBS += -lssl -lcrypto -lavcodec.61 -lavutil.59 -lopus -framework SDL2 -framework SDL2_ttf
LIBS += -lobjc -framework VideoToolbox -framework AVFoundation -framework CoreVideo -framework CoreGraphics -framework CoreMedia -framework AppKit -framework Metal -framework QuartzCore
# For libsoundio
LIBS += -framework CoreAudio -framework AudioUnit

View File

@ -25,13 +25,13 @@ in
stdenv.mkDerivation rec {
pname = "moonlight-qt";
version = "5.0.1";
version = "6.0.0";
src = fetchFromGitHub {
owner = "moonlight-stream";
repo = pname;
rev = "v${version}";
sha256 = "sha256-0ONjUqpM1tUnyaEnMgVl7ff6pND7kyqouv2mpgteZP0=";
sha256 = "sha256-tXlcHQhXnGdZqUlOHPN1f4vaGlF/kGkTybVW/+FMGX8=";
fetchSubmodules = true;
};
@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
description = "Play your PC games on almost any device";
homepage = "https://moonlight-stream.org";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ luc65r ];
maintainers = with maintainers; [ luc65r zmitchell ];
platforms = platforms.all;
mainProgram = "moonlight";
};