me
/
guix
Archived
1
0
Fork 0

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
Raghav Gururajan 2020-04-24 20:07:27 -04:00 committed by Nicolas Goaziou
parent 3a5d1c9b6b
commit 5cca16968e
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 4 additions and 2 deletions

View File

@ -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)