guix-commits
[Top][All Lists]
Advanced

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

04/09: gnu: rapidjson: Don't use unstable tarball.


From: guix-commits
Subject: 04/09: gnu: rapidjson: Don't use unstable tarball.
Date: Mon, 11 Feb 2019 20:34:50 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 3e3414efd45d95bbc6320fed75057cb2c82cc3af
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Feb 10 18:58:23 2019 +0100

    gnu: rapidjson: Don't use unstable tarball.
    
    * gnu/packages/web.scm (rapidjson)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/web.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 84949ab..7629353 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -747,14 +747,14 @@ current version of any major web browser.")
     (name "rapidjson")
     (version "1.1.0")
     (source (origin
-             (method url-fetch)
-             (uri (string-append
-                   "https://github.com/miloyip/rapidjson/archive/v";
-                   version ".tar.gz"))
-             (file-name (string-append name "-" version ".tar.gz"))
+             (method git-fetch)
+             (uri (git-reference
+                   (url "https://github.com/miloyip/rapidjson.git";)
+                   (commit (string-append "v" version))))
+             (file-name (git-file-name name version))
              (sha256
               (base32
-               "13nrpvw8f1wx0ga7svbzld7pgrv8l172nangpipnj7jaf0lysz5z"))
+               "1jixgb8w97l9gdh3inihz7avz7i770gy2j2irvvlyrq3wi41f5ab"))
              (modules '((guix build utils)))
              (snippet
               '(begin



reply via email to

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