gnu: lua-libmpack: Do not use unstable source tarball.
* gnu/packages/serialization.scm (lua-libmpack)[source]: Change to GIT-FETCH.master
parent
f8e0d93ca3
commit
2ec3df7019
|
@ -169,13 +169,14 @@ that implements both the msgpack and msgpack-rpc specifications.")
|
||||||
(package (inherit libmpack)
|
(package (inherit libmpack)
|
||||||
(name "lua-libmpack")
|
(name "lua-libmpack")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/libmpack/libmpack-lua/"
|
(uri (git-reference
|
||||||
"archive/" (package-version libmpack) ".tar.gz"))
|
(url "https://github.com/libmpack/libmpack-lua")
|
||||||
(file-name (string-append name "-" (package-version libmpack) ".tar.gz"))
|
(commit (package-version libmpack))))
|
||||||
|
(file-name (git-file-name name (package-version libmpack)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"153zrrbyxhf71dgzjjhrk56rfwk3nisslpgcqyg44v8fnz1xpk6i"))))
|
"10zx4biyi9gmk90aa6674vvqsrz74jy74fxqlcrx66c8sl8yxr92"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; FIXME: tests require "busted", which is not yet available in Guix.
|
`(;; FIXME: tests require "busted", which is not yet available in Guix.
|
||||||
|
|
Reference in New Issue