diff options
author | 宋文武 <[email protected]> | 2024-12-31 13:27:16 +0800 |
---|---|---|
committer | 宋文武 <[email protected]> | 2025-01-01 10:48:34 +0800 |
commit | 51259f7108c9e49b15ab5fbc90c01ace11db7344 (patch) | |
tree | 8d21a05a0fee867e833ea44f8383933149d6af95 | |
parent | d15fb671d39d14901706fd878bfeb91d15837bc1 (diff) |
gnu: xfce4-volumed-pulse: Update to 0.2.5.
* gnu/packages/xfce.scm (xfce4-volumed-pulse): Update to 0.2.5.
[source]: Switch to git-fetch.
[native-inputs]: Add xfce4-dev-tools.
[home-page]: Set to gitlab.xfce.org.
Change-Id: Ifc8015a5ec9a076b8a953635e99cbc76cfa315f5
-rw-r--r-- | gnu/packages/xfce.scm | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 4fd927268c..bbc2f90195 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1661,21 +1661,22 @@ A plugin for the Xfce panel is also available.") (define-public xfce4-volumed-pulse (package (name "xfce4-volumed-pulse") - (version "0.2.4") - (source (origin - (method url-fetch) - (uri (string-append "https://archive.xfce.org/src/apps/" - name "/" (version-major+minor version) "/" - name "-" version ".tar.bz2")) - (sha256 - (base32 - "0ql3hlciffjs981jp21hg6phrk25crh64yc01fm0l75k4vvf66d0")))) + (version "0.2.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://gitlab.xfce.org/apps/" name)) + (commit (string-append name "-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vr20rm81kd0av85zvfghzbczs4ahkxi1n4qn4hikqnb67iwrcq3")))) (build-system glib-or-gtk-build-system) (native-inputs - (list intltool pkg-config)) + (list xfce4-dev-tools)) (inputs (list xfconf libnotify pulseaudio keybinder-3.0 gtk+)) - (home-page "https://goodies.xfce.org/projects/applications/xfce4-volumed") + (home-page "https://gitlab.xfce.org/apps/xfce4-volumed-pulse") (synopsis "XFCE volume keys daemon") (description "This is a volume keys control daemon for Xfce Desktop environment. It controls |