mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: c-toxcore: Fetch sources from git.
* gnu/packages/messaging.scm (c-toxcore)[source]: Fetch from git.
This commit is contained in:
parent
7fed5481fe
commit
6018683683
1 changed files with 6 additions and 5 deletions
|
@ -860,13 +860,14 @@ (define-public c-toxcore
|
||||||
(version "0.2.8")
|
(version "0.2.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/TokTok/c-toxcore/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/TokTok/c-toxcore.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qlkimlvbd24nlj7w9b5rpz1r807magqxmfylc1mlxsqhmfi5zj7"))))
|
"0xgnraysz25fbws5zwjk92mwnl8k1yih701qam8kgm3rxh50kyhm"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; FIXME: Testsuite seems to stay stuck on test 3. Disable
|
`(#:tests? #f)) ; FIXME: Testsuite seems to stay stuck on test 3. Disable
|
||||||
; for now.
|
; for now.
|
||||||
|
|
Loading…
Reference in a new issue