3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: jsoncpp: Fetch sources through git.

* gnu/packages/serialization.scm (jsoncpp)[source]: Switch to GIT-FETCH.
This commit is contained in:
Marius Bakke 2019-07-06 18:48:56 +02:00
parent f4d562b008
commit f1818f96a3
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -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")