diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-05-20 03:36:22 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-05-20 04:16:05 +0200 |
commit | 1438306bd5ae78058129c9f343bbed1f4eba02d4 (patch) | |
tree | 7297ed05ebc040125117dbf9bc85e78a8d31a94b | |
parent | 5da54e8004555dbb631a3d80106a321340cd4f16 (diff) | |
download | guix-1438306bd5ae78058129c9f343bbed1f4eba02d4.tar.gz guix-1438306bd5ae78058129c9f343bbed1f4eba02d4.zip |
gnu: exo: Don't use NAME in source URI.
* gnu/packages/xfce.scm (exo)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/xfce.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index e795412d30..2ba4be0f1d 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -192,8 +192,8 @@ to share commonly used Xfce widgets among the Xfce applications.") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/xfce/" - name "/" (version-major+minor version) "/" - name "-" version ".tar.bz2")) + "exo/" (version-major+minor version) "/" + "exo-" version ".tar.bz2")) (sha256 (base32 "1s23prcgall6r5dpn0qlrdq3zj13p95a5s0l2vflgrka8gb39x78")))) |