gnu: pavucontrol: Fix icons.
* gnu/packages/pulseaudio.scm (pavucontrol): Fix icons. [build-system]: Use glib-or-gtk-build-system instead of gnu-build-system. [inputs]: Add adwaita-icon-theme. Re-order inputs. Since the adwaita icon theme is hard-coded in the application, there is no choice for the user anyway. So added adwaita-icon-theme to inputs and changed build-system to glib-or-gtk to fix loading of icons.master
parent
3a5d1c9b6b
commit
5cca16968e
|
@ -31,6 +31,7 @@
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module ((guix licenses) #:prefix l:)
|
||||
#:use-module (guix build-system glib-or-gtk)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (gnu packages)
|
||||
|
@ -233,10 +234,11 @@ sound server.")
|
|||
(sha256
|
||||
(base32
|
||||
"14486c6lmmirkhscbfygz114f6yzf97h35n3h3pdr27w4mdfmlmk"))))
|
||||
(build-system gnu-build-system)
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(inputs
|
||||
`(("libcanberra" ,libcanberra)
|
||||
`(("adwaita-icon-theme" ,adwaita-icon-theme) ;hard-coded theme
|
||||
("gtkmm" ,gtkmm)
|
||||
("libcanberra" ,libcanberra)
|
||||
("pulseaudio" ,pulseaudio)))
|
||||
(native-inputs
|
||||
`(("intltool" ,intltool)
|
||||
|
|
Reference in New Issue