gnu: unittest-cpp: Use 'git-fetch'.
* gnu/packages/check.scm (unittest-cpp)[source]: Use 'git-fetch'.
This commit is contained in:
parent
0afd0660c2
commit
8aedb3ad8a
|
@ -2098,13 +2098,13 @@ retried.")
|
||||||
(name "unittest-cpp")
|
(name "unittest-cpp")
|
||||||
(version "2.0.0")
|
(version "2.0.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/unittest-cpp/unittest-cpp/archive/v"
|
(url "https://github.com/unittest-cpp/unittest-cpp")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1fgmna2la7z4pwwy2gd10gpgi2q1fk89npjfvkmzvhkxhyc231bl"))))
|
(base32 "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; It's run after build automatically.
|
`(#:tests? #f)) ; It's run after build automatically.
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
|
Loading…
Reference in New Issue