mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: catch2: Use git-fetch.
* gnu/packages/check.scm (catch2)[source]: Use git-fetch.
This commit is contained in:
parent
46756754df
commit
28bcf80902
1 changed files with 6 additions and 4 deletions
|
@ -210,12 +210,14 @@ (define-public catch-framework2
|
||||||
(version "1.12.2")
|
(version "1.12.2")
|
||||||
(home-page "https://github.com/catchorg/Catch2")
|
(home-page "https://github.com/catchorg/Catch2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append home-page "/archive/v" version ".tar.gz"))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/catchorg/Catch2")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0g2ysxc6adqca5wh7nsicnxb9wkxg75cd5izjsl39rcj0v903gr7"))
|
"1gdp5wm8khn02g2miz381llw3191k7309qj8s3jd6sasj01rhf23"))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(synopsis "Automated test framework for C++ and Objective-C")
|
(synopsis "Automated test framework for C++ and Objective-C")
|
||||||
(description "Catch2 stands for C++ Automated Test Cases in Headers and is
|
(description "Catch2 stands for C++ Automated Test Cases in Headers and is
|
||||||
|
|
Loading…
Reference in a new issue