mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: accountsservice: Don't use NAME in source URI.
* gnu/packages/freedesktop.scm (accountsservice)[source]: Hard-code NAME.
This commit is contained in:
parent
b577306a92
commit
2a6403c1b3
1 changed files with 7 additions and 7 deletions
|
@ -879,13 +879,13 @@ (define-public accountsservice
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue