rekado pushed a commit to branch master
in repository guix.
commit 369ee96b6987b2f5f78bcde89f839799dab01a2e
Author: Ricardo Wurmus <[email protected]>
Date: Tue Jan 24 15:40:12 2017 +0100
gnu: Add lua5.2-libmpack.
* gnu/packages/serialization.scm (lua5.2-libmpack): New variable.
---
gnu/packages/serialization.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index d59ded3..9e073b7 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -193,6 +193,26 @@ that implements both the msgpack and msgpack-rpc
specifications.")
`(("pkg-config" ,pkg-config)))
(synopsis "Lua bindings for the libmpack binary serialization library")))
+(define-public lua5.2-libmpack
+ (package (inherit lua-libmpack)
+ (name "lua5.2-libmpack")
+ (arguments
+ (substitute-keyword-arguments (package-arguments lua-libmpack)
+ ((#:make-flags flags)
+ `(let* ((lua-version ,(package-version lua-5.2))
+ (lua-major+minor ,(version-major+minor (package-version
lua-5.2))))
+ (list "CC=gcc"
+ "USE_SYSTEM_LUA=yes"
+ (string-append "LUA_VERSION=" lua-version)
+ (string-append "LUA_VERSION_MAJ_MIN=" lua-major+minor)
+ (string-append "PREFIX="
+ (assoc-ref %outputs "out"))
+ (string-append "LUA_CMOD_INSTALLDIR="
+ (assoc-ref %outputs "out")
+ "/lib/lua/" lua-major+minor))))))
+ (inputs
+ `(("lua" ,lua-5.2)))))
+
(define-public yaml-cpp
(package
(name "yaml-cpp")