kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.
commit a5186d9d1cbac56c68e08818c14d5a7649051d2a
Author: Alexandros Theodotou <[email protected]>
Date: Fri Nov 8 10:14:10 2019 +0100
gnu: jalv: Fix gtkmm, add gtk+-2 and qtbase.
The gtkmm passed to inputs was unused. Jalv does not support gtkmm 3 at the
moment.
* gnu/packages/audio.scm (jalv)[inputs]:
Add gtk+-2 and qtbase.
Change unused gtkmm to gtkmm-2.
Signed-off-by: Marius Bakke <[email protected]>
---
gnu/packages/audio.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index aa54f94..bc79225 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1588,8 +1588,10 @@ synchronous execution of all clients, and low latency
operation.")
`(("lv2" ,lv2)
("lilv" ,lilv)
("suil" ,suil)
- ("gtk" ,gtk+)
- ("gtkmm" ,gtkmm)
+ ("gtk2" ,gtk+-2)
+ ("gtk3" ,gtk+)
+ ("gtkmm" ,gtkmm-2)
+ ("qtbase" ,qtbase)
("jack" ,jack-1)))
(native-inputs
`(("pkg-config" ,pkg-config)))