kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.
commit d44d4be7846a3b91f41d988f1aa7fa2cbbe8209e
Author: Tobias Geerinckx-Rice <[email protected]>
Date: Sun Nov 10 00:41:55 2019 +0100
gnu: xfce4-whiskermenu-plugin: Don't use NAME in source URI.
* gnu/packages/xfce.scm (xfce4-whiskermenu-plugin)[source]: Hard-code NAME.
---
gnu/packages/xfce.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 231cd30..d134a3e 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -463,14 +463,14 @@ keys for controlling the audio volume.")
(package
(name "xfce4-whiskermenu-plugin")
(version "2.3.3")
- (source (origin
- (method url-fetch)
- (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
- name "/" (version-major+minor version) "/"
- name "-" version ".tar.bz2"))
- (sha256
- (base32
- "0j0qmk372130avq8n07lfqrcm2al7n07l8gc06bbr1g6q57wrip0"))))
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
+ "xfce4-whiskermenu-plugin/" (version-major+minor
version) "/"
+ "xfce4-whiskermenu-plugin-" version ".tar.bz2"))
+ (sha256
+ (base32 "0j0qmk372130avq8n07lfqrcm2al7n07l8gc06bbr1g6q57wrip0"))))
(build-system cmake-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)