gnu: telepathy-mission-control: Don't use NAME in source URI.

* gnu/packages/freedesktop.scm (telepathy-mission-control)[source]: Hard-code NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-10-27 23:13:22 +01:00
parent b13b9384bc
commit da42873c18
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 8 additions and 7 deletions

View File

@ -1102,13 +1102,14 @@ messaging clients such as Empathy, GNOME Shell or KDE Telepathy.")
(package
(name "telepathy-mission-control")
(version "5.16.4")
(source (origin
(method url-fetch)
(uri (string-append "https://telepathy.freedesktop.org/releases/"
name "/" name "-" version ".tar.gz"))
(sha256
(base32
"1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp"))))
(source
(origin
(method url-fetch)
(uri (string-append "https://telepathy.freedesktop.org/releases/"
"telepathy-mission-control/"
"telepathy-mission-control-" version ".tar.gz"))
(sha256
(base32 "1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp"))))
(build-system gnu-build-system)
(native-inputs
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.