guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: pavucontrol: Fix icons.


From: guix-commits
Subject: branch master updated: gnu: pavucontrol: Fix icons.
Date: Sat, 25 Apr 2020 17:02:12 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5cca169  gnu: pavucontrol: Fix icons.
5cca169 is described below

commit 5cca16968ea1ff90df9ecb306636d60162a666f0
Author: Raghav Gururajan <address@hidden>
AuthorDate: Fri Apr 24 20:07:27 2020 -0400

    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.
---
 gnu/packages/pulseaudio.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm
index c2853dc..a150039 100644
--- a/gnu/packages/pulseaudio.scm
+++ b/gnu/packages/pulseaudio.scm
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]