guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: jsoncpp: Fetch sources through git.


From: guix-commits
Subject: 03/05: gnu: jsoncpp: Fetch sources through git.
Date: Sat, 6 Jul 2019 19:18:00 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit f1818f96a32584a81c7aa4775769d156c973cbf4
Author: Marius Bakke <address@hidden>
Date:   Sat Jul 6 18:48:56 2019 +0200

    gnu: jsoncpp: Fetch sources through git.
    
    * gnu/packages/serialization.scm (jsoncpp)[source]: Switch to GIT-FETCH.
---
 gnu/packages/serialization.scm | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index ae1ef97..2a7dd62 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -298,17 +298,15 @@ that implements both the msgpack and msgpack-rpc 
specifications.")
   (package
     (name "jsoncpp")
     (version "1.8.4")
+    (home-page "https://github.com/open-source-parsers/jsoncpp";)
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/open-source-parsers/jsoncpp/archive/";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference (url home-page) (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1dpxk8hkni5dq4mdw8qbaj40jmid3a31d1gh8iqcnfwkw34ym7f4"))))
+                "1z0gj7a6jypkijmpknis04qybs1hkd04d1arr3gy89lnxmp6qzlm"))))
     (build-system cmake-build-system)
-    (home-page "https://github.com/open-source-parsers/jsoncpp";)
     (arguments
      `(#:configure-flags '("-DBUILD_SHARED_LIBS:BOOL=YES")))
     (synopsis "C++ library for interacting with JSON")



reply via email to

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