GNU bug report logs -
#37121
[PATCH 00/40] Update Xfce to 4.14
Previous Next
Reported by: L p R n d n <guix <at> lprndn.info>
Date: Tue, 20 Aug 2019 19:18:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
* gnu/packages/xfce.scm (xfce4-pulseaudio-plugin): Update to 0.4.2.
[arguments] Add augment-cflags phase.
[native-inputs] Add dbus and dbus-glib.
---
gnu/packages/xfce.scm | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 6dd69b4d26..74f5e326d4 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -412,7 +412,7 @@ matching them against regular expressions.")
(define-public xfce4-pulseaudio-plugin
(package
(name "xfce4-pulseaudio-plugin")
- (version "0.4.1")
+ (version "0.4.2")
(source (origin
(method url-fetch)
(uri (string-append "https://archive.xfce.org/src/panel-plugins/"
@@ -420,11 +420,26 @@ matching them against regular expressions.")
name "-" version ".tar.bz2"))
(sha256
(base32
- "1w29y0a066y8as12xrkbfqcn7dpdsvx97idzw7028gmcvca87a3c"))))
+ "0851b0vs5xmy3cq899khcghmkqwvh9rnzwavi17msrsq4jyaxs2a"))))
(build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ ;; For dbus/dbus-glib.h in pulseaudio-config.h
+ (modify-phases %standard-phases
+ (add-after 'set-paths 'augment-cflags
+ (lambda* (#:key inputs #:allow-other-keys)
+ (setenv "C_INCLUDE_PATH"
+ (string-append (assoc-ref inputs "dbus-glib")
+ "/include/dbus-1.0" ":"
+ (assoc-ref inputs "dbus")
+ "/include/dbus-1.0" ":"
+ (getenv "C_INCLUDE_PATH")))
+ #t)))))
(native-inputs
`(("intltool" ,intltool)
- ("pkg-config" ,pkg-config)))
+ ("pkg-config" ,pkg-config)
+ ("dbus-glib" ,dbus-glib)
+ ("dbus" ,dbus)))
(inputs
`(("exo" ,exo)
("libnotify" ,libnotify)
--
2.22.0
This bug report was last modified 5 years and 342 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.