[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: musescore: Add missing QML imports.
From: |
guix-commits |
Subject: |
branch master updated: gnu: musescore: Add missing QML imports. |
Date: |
Tue, 01 Jun 2021 13:02:38 -0400 |
This is an automated email from the git hooks/post-receive script.
leoprikler pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new cb82123 gnu: musescore: Add missing QML imports.
cb82123 is described below
commit cb821238ed2344d550255c93b41267d8481eefd2
Author: Leo Prikler <leo.prikler@student.tugraz.at>
AuthorDate: Tue Jun 1 18:40:10 2021 +0200
gnu: musescore: Add missing QML imports.
This fixes an issue wherein the palettes sidebar would turn up empty.
* gnu/packages/music.scm (musescore)[build-system]: Use qt-build-systems.
[inputs]: Add qtgraphicaleffects.
---
gnu/packages/music.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ed64d70..cc9076e 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -69,6 +69,7 @@
#:use-module (guix build-system python)
#:use-module (guix build-system scons)
#:use-module (guix build-system glib-or-gtk)
+ #:use-module (guix build-system qt)
#:use-module (guix build-system waf)
#:use-module (guix build-system trivial)
#:use-module (guix build-system go)
@@ -4756,7 +4757,7 @@ standalone JACK client and an LV2 plugin is also
available.")
"thirdparty/portmidi"
"thirdparty/qt-google-analytics"))
#t))))
- (build-system cmake-build-system)
+ (build-system qt-build-system)
(arguments
`(#:configure-flags
`("-DBUILD_TELEMETRY_MODULE=OFF" ;don't phone home
@@ -4787,6 +4788,7 @@ standalone JACK client and an LV2 plugin is also
available.")
("pulseaudio" ,pulseaudio)
("qtbase" ,qtbase)
("qtdeclarative" ,qtdeclarative)
+ ("qtgraphicaleffects" ,qtgraphicaleffects)
("qtquickcontrols2" ,qtquickcontrols2)
("qtscript" ,qtscript)
("qtsvg" ,qtsvg)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: musescore: Add missing QML imports.,
guix-commits <=