gnu: lua-libmpack: Do not use unstable source tarball.

* gnu/packages/serialization.scm (lua-libmpack)[source]: Change to GIT-FETCH.
master
Marius Bakke 2019-07-15 18:44:01 +02:00
parent f8e0d93ca3
commit 2ec3df7019
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 5 deletions

View File

@ -169,13 +169,14 @@ that implements both the msgpack and msgpack-rpc specifications.")
(package (inherit libmpack)
(name "lua-libmpack")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/libmpack/libmpack-lua/"
"archive/" (package-version libmpack) ".tar.gz"))
(file-name (string-append name "-" (package-version libmpack) ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/libmpack/libmpack-lua")
(commit (package-version libmpack))))
(file-name (git-file-name name (package-version libmpack)))
(sha256
(base32
"153zrrbyxhf71dgzjjhrk56rfwk3nisslpgcqyg44v8fnz1xpk6i"))))
"10zx4biyi9gmk90aa6674vvqsrz74jy74fxqlcrx66c8sl8yxr92"))))
(build-system gnu-build-system)
(arguments
`(;; FIXME: tests require "busted", which is not yet available in Guix.