diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-30 20:19:11 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-30 22:14:12 +0100 |
commit | 2a6403c1b3b4b0f1397fc606699bde8699d36e53 (patch) | |
tree | df801b5f61c0ed9fd93d20b6763df3d8e7ffcd81 | |
parent | b577306a924800863f25a5aa9733bfc44a58250a (diff) | |
download | gnu-guix-2a6403c1b3b4b0f1397fc606699bde8699d36e53.tar gnu-guix-2a6403c1b3b4b0f1397fc606699bde8699d36e53.tar.gz |
gnu: accountsservice: Don't use NAME in source URI.
* gnu/packages/freedesktop.scm (accountsservice)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/freedesktop.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index e7e17b99e2..6f8b85e9d9 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -879,13 +879,13 @@ message bus.") (package (name "accountsservice") (version "0.6.50") - (source (origin - (method url-fetch) - (uri (string-append "https://www.freedesktop.org/software/" - name "/" name "-" version ".tar.xz")) - (sha256 - (base32 - "0jn7vg1z4vxnna0hl33hbcb4bb3zpilxc2vyclh24vx4vvsjhn83")))) + (source + (origin + (method url-fetch) + (uri (string-append "https://www.freedesktop.org/software/" + "accountsservice/accountsservice-" version ".tar.xz")) + (sha256 + (base32 "0jn7vg1z4vxnna0hl33hbcb4bb3zpilxc2vyclh24vx4vvsjhn83")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; XXX: tests require DocBook 4.1.2 |