[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: Add lua5.2-libmpack.
From: |
Ricardo Wurmus |
Subject: |
03/06: gnu: Add lua5.2-libmpack. |
Date: |
Tue, 31 Jan 2017 20:02:11 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 369ee96b6987b2f5f78bcde89f839799dab01a2e
Author: Ricardo Wurmus <address@hidden>
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")
- branch master updated (8a4d14f -> 9b11eee), Ricardo Wurmus, 2017/01/31
- 02/06: gnu: Add lua-libmpack., Ricardo Wurmus, 2017/01/31
- 05/06: gnu: Add lua5.2-lpeg., Ricardo Wurmus, 2017/01/31
- 06/06: gnu: Add neovim., Ricardo Wurmus, 2017/01/31
- 04/06: gnu: Add lua5.2-bitop., Ricardo Wurmus, 2017/01/31
- 01/06: gnu: Add libmpack., Ricardo Wurmus, 2017/01/31
- 03/06: gnu: Add lua5.2-libmpack.,
Ricardo Wurmus <=