gnu: lua-libmpack: Update to 1.0.8.

* gnu/packages/serialization.scm (lua-libmpack): Update to 1.0.8.
master
Tobias Geerinckx-Rice 2019-10-06 01:26:47 +02:00
parent d1b0e1fd6d
commit 3acd85ac30
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 4 additions and 3 deletions

View File

@ -170,15 +170,16 @@ that implements both the msgpack and msgpack-rpc specifications.")
(define-public lua-libmpack
(package (inherit libmpack)
(name "lua-libmpack")
(version "1.0.8")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/libmpack/libmpack-lua.git")
(commit (package-version libmpack))))
(file-name (git-file-name name (package-version libmpack)))
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "10zx4biyi9gmk90aa6674vvqsrz74jy74fxqlcrx66c8sl8yxr92"))))
(base32 "1ijvzgq5hvib03w5rghv31wi7byamwg7qdx5pawvhvnflaii8ivw"))))
(build-system gnu-build-system)
(arguments
`(;; FIXME: tests require "busted", which is not yet available in Guix.