gnu: qjson: Don't use unstable tarball.

* gnu/packages/web.scm (qjson)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-02-10 18:31:11 +01:00
parent 20ab34c16f
commit 082504addf
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -620,17 +620,17 @@ (define-public qjson
(name "qjson")
(version "0.9.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/flavio/qjson/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/flavio/qjson.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1m0h4rajj99hv9w4i381a8x81lxiv167lxk10ncvphpkfxs624p8"))))
"1f4wnxzx0qdmxzc7hqk28m0sva7z9p9xmxm6aifvjlp0ha6pmfxs"))))
(build-system cmake-build-system)
(arguments
;; The tests require a X server
;; The tests require a running X server.
`(#:configure-flags '("-DQJSON_BUILD_TESTS=ON"
"-DCMAKE_CXX_FLAGS=-std=gnu++11 -fPIC")
#:phases