gnu: toxic: Don't use unstable tarball.
* gnu/packages/messaging.scm (toxic)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
7c64cc7a5a
commit
0c273c5040
|
@ -1694,14 +1694,15 @@ building the IRC clients and bots.")
|
||||||
(package
|
(package
|
||||||
(name "toxic")
|
(name "toxic")
|
||||||
(version "0.8.2")
|
(version "0.8.2")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/JFreegman/toxic/archive/v"
|
(method git-fetch)
|
||||||
version ".tar.gz"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/JFreegman/toxic.git")
|
||||||
(base32
|
(commit (string-append "v" version))))
|
||||||
"1dx6z7k0zpsd7dpysdy23f0hnm49qlikb0mq8fg0y01dsz9vxgak"))
|
(sha256
|
||||||
(file-name (git-file-name name version))))
|
(base32 "0fwmk945nip98m3md58y3ibjmzfq25hns3xf0bmbc6fjpww8d5p5"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
|
|
Loading…
Reference in New Issue