gnu: i3lock-color: Don't use unstable tarball.

* gnu/packages/wm.scm (i3lock-color)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-03-08 16:10:39 +01:00
parent a48db08afe
commit f45cc966ba
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 7 deletions

View File

@ -392,16 +392,16 @@ prompt.")
(version "2.11-c")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/PandorasFox/i3lock-color/"
"archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/PandorasFox/i3lock-color.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0zh7il2y6dmzym3w6r9xii5dma8pjjjlq4dm5iby7m3gvplj4q9p"))))
(base32 "1myq9fazkwd776agrnj27bm5nwskvss9v9a5qb77n037dv8d0rdw"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f)) ;no tests included
`(#:tests? #f)) ; no tests included
(inputs
`(("cairo" ,cairo)
("libev" ,libev)