mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: xfce4-pulseaudio-plugin: Switch to git source.
* gnu/packages/xfce.scm (xfce4-pulseaudio-plugin)[source]: Switch to git-fetch. [home-page]: Set to docs.xfce.org. [arguments]: Add "--enable-maintainer-mode" to configure-flags. [native-inputs]: Add xfce4-dev-tools. [inputs]: Remove pavucontrol. Change-Id: Ib633e09831f195d03e4c1a1ed4c7d6e080595b5e Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
2c88c76adb
commit
fbaac3a731
1 changed files with 21 additions and 17 deletions
|
@ -548,25 +548,29 @@ (define-public xfce4-pulseaudio-plugin
|
||||||
(version "0.4.9")
|
(version "0.4.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://archive.xfce.org/src/panel-plugins/"
|
(uri (git-reference
|
||||||
"xfce4-pulseaudio-plugin/"
|
(url
|
||||||
(version-major+minor version) "/"
|
"https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin")
|
||||||
"xfce4-pulseaudio-plugin-" version ".tar.bz2"))
|
(commit (string-append name "-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16n9vnzwi1j90yxcf4c0lkyqkl969yj6hiby3cvd0j18zcapd050"))))
|
(base32 "1hmajys3g56xlpja9hx0rvap54bw0g6vmirh068zn5004wg7i6kc"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(arguments
|
||||||
(list intltool pkg-config dbus-glib dbus))
|
(list
|
||||||
(inputs
|
#:configure-flags #~(list "--enable-maintainer-mode")))
|
||||||
(list exo
|
(native-inputs (list dbus
|
||||||
keybinder
|
dbus-glib
|
||||||
libnotify
|
xfce4-dev-tools))
|
||||||
libxfce4ui
|
(inputs (list exo
|
||||||
pavucontrol
|
keybinder
|
||||||
pulseaudio
|
libnotify
|
||||||
xfce4-panel))
|
libxfce4ui
|
||||||
(home-page "https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
|
pulseaudio
|
||||||
|
xfce4-panel))
|
||||||
|
(home-page
|
||||||
|
"https://docs.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
|
||||||
(synopsis "PulseAudio panel plugin for Xfce")
|
(synopsis "PulseAudio panel plugin for Xfce")
|
||||||
(description
|
(description
|
||||||
"Xfce PulseAudio plugin is a plugin for the Xfce panel which provides a
|
"Xfce PulseAudio plugin is a plugin for the Xfce panel which provides a
|
||||||
|
|
Loading…
Reference in a new issue