GNU bug report logs -
#76419
[PATCH] * gnu/packages/games.scm (moonlight-qt): Modify inputs.
Previous Next
To reply to this bug, email your comments to 76419 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#76419
; Package
guix-patches
.
(Wed, 19 Feb 2025 18:18:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Vitor Hugo <vitorhugonunes <at> proton.me>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 19 Feb 2025 18:18:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
The package was missing `wayland` as an input, which broke hardware
acceleration whenever running under wayland. This fixes it.
Change-Id: I65b16f5e2e77627f79f45a63461436be51e0fa96
---
gnu/packages/games.scm | 44 +++++++++++++++++++++++++-----------------
1 file changed, 26 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 30aaf0767a..10fe0f6dac 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -6566,15 +6566,15 @@ (define-public moonlight-qt
(package
(name "moonlight-qt")
(version "6.1.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/moonlight-stream/moonlight-qt")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "06fxf3m26k036asxjkkykk5q96nincwmpiqm953m7zgr9224gidx"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/moonlight-stream/moonlight-qt")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06fxf3m26k036asxjkkykk5q96nincwmpiqm953m7zgr9224gidx"))))
(build-system qt-build-system)
(arguments
(list
@@ -6583,18 +6583,25 @@ (define-public moonlight-qt
#~(modify-phases %standard-phases
(replace 'configure
(lambda* _
- (symlink (string-append
- #$(this-package-input "sdl2-gamecontrollerdb")
- "/share/sdl2/gamecontrollerdb.txt")
+ (symlink (string-append #$(this-package-input
+ "sdl2-gamecontrollerdb")
+ "/share/sdl2/gamecontrollerdb.txt")
"app/SDL_GameControllerDB/gamecontrollerdb.txt")
;; Unbundle libraries.
(substitute* "moonlight-qt.pro"
- ((" moonlight-common-c.*\n") "")
- ((" qmdnsengine.*\n") "")
- ((" h264bitstream.*\n") "")
- ((" app \\\\") " app")
- (("app.depends") "INCLUDEPATH +="))
- (invoke "qmake" (string-append "PREFIX=" #$output)))))))
+ ((" moonlight-common-c.*\n")
+ "")
+ ((" qmdnsengine.*\n")
+ "")
+ ((" h264bitstream.*\n")
+ "")
+ ((" app \\\\")
+ " app")
+ (("app.depends")
+ "INCLUDEPATH +="))
+ (invoke "qmake"
+ (string-append "PREFIX="
+ #$output)))))))
(native-inputs (list pkg-config qttools-5))
(inputs (list ffmpeg
h264bitstream
@@ -6609,6 +6616,7 @@ (define-public moonlight-qt
qtquickcontrols2-5
qtsvg-5
qtwayland-5
+ wayland
sdl2
sdl2-ttf
sdl2-gamecontrollerdb))
--
2.46.0
This bug report was last modified 12 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.