mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
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.
This commit is contained in:
parent
3a5d1c9b6b
commit
5cca16968e
1 changed files with 4 additions and 2 deletions
|
@ -31,6 +31,7 @@ (define-module (gnu packages pulseaudio)
|
|||
#: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 @@ (define-public pavucontrol
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue