guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/08: gnu: catch2: Use git-fetch.


From: guix-commits
Subject: 02/08: gnu: catch2: Use git-fetch.
Date: Thu, 20 Dec 2018 15:38:45 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 28bcf809022056875986171adc4134f31a59ab16
Author: Efraim Flashner <address@hidden>
Date:   Thu Dec 20 21:02:41 2018 +0200

    gnu: catch2: Use git-fetch.
    
    * gnu/packages/check.scm (catch2)[source]: Use git-fetch.
---
 gnu/packages/check.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 5bf849d..684dddc 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -210,12 +210,14 @@ multi-paradigm automated test framework for C++ and 
Objective-C.")
     (version "1.12.2")
     (home-page "https://github.com/catchorg/Catch2";)
     (source (origin
-              (method url-fetch)
-              (uri (string-append home-page "/archive/v" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/catchorg/Catch2";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0g2ysxc6adqca5wh7nsicnxb9wkxg75cd5izjsl39rcj0v903gr7"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+                "1gdp5wm8khn02g2miz381llw3191k7309qj8s3jd6sasj01rhf23"))))
     (build-system cmake-build-system)
     (synopsis "Automated test framework for C++ and Objective-C")
     (description "Catch2 stands for C++ Automated Test Cases in Headers and is



reply via email to

[Prev in Thread] Current Thread [Next in Thread]