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")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://archive.xfce.org/src/panel-plugins/"
|
||||
"xfce4-pulseaudio-plugin/"
|
||||
(version-major+minor version) "/"
|
||||
"xfce4-pulseaudio-plugin-" version ".tar.bz2"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url
|
||||
"https://gitlab.xfce.org/panel-plugins/xfce4-pulseaudio-plugin")
|
||||
(commit (string-append name "-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "16n9vnzwi1j90yxcf4c0lkyqkl969yj6hiby3cvd0j18zcapd050"))))
|
||||
(base32 "1hmajys3g56xlpja9hx0rvap54bw0g6vmirh068zn5004wg7i6kc"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list intltool pkg-config dbus-glib dbus))
|
||||
(inputs
|
||||
(list exo
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list "--enable-maintainer-mode")))
|
||||
(native-inputs (list dbus
|
||||
dbus-glib
|
||||
xfce4-dev-tools))
|
||||
(inputs (list exo
|
||||
keybinder
|
||||
libnotify
|
||||
libxfce4ui
|
||||
pavucontrol
|
||||
pulseaudio
|
||||
xfce4-panel))
|
||||
(home-page "https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
|
||||
(home-page
|
||||
"https://docs.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
|
||||
(synopsis "PulseAudio panel plugin for Xfce")
|
||||
(description
|
||||
"Xfce PulseAudio plugin is a plugin for the Xfce panel which provides a
|
||||
|
|
Loading…
Reference in a new issue