me
/
guix
Archived
1
0
Fork 0

gnu: libstrophe: Don't use unstable tarball.

* gnu/packages/messaging.scm (libstrophe)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-11-12 03:29:43 +01:00
parent 75d9d8afc1
commit 3368917c26
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 9 additions and 8 deletions

View File

@ -1590,14 +1590,15 @@ manual SSL certificate verification.")
(package
(name "libstrophe")
(version "0.9.3")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/strophe/libstrophe/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1zm4a7009lshwgj5x11vslrxj2zjgwshhhad3p05kvbp47v7jfwa"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/strophe/libstrophe.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1g1l0w9z9hdy5ncdvd9097gi7k7783did6py5h9camlpb2fnk5mk"))))
(build-system gnu-build-system)
(inputs
`(("expat" ,expat)