[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: Add lua-resty-core.
From: |
guix-commits |
Subject: |
01/08: gnu: Add lua-resty-core. |
Date: |
Wed, 14 Oct 2020 16:41:44 -0400 (EDT) |
wigust pushed a commit to branch master
in repository guix.
commit cb53c59dd19be8de2525d28bab59d91585dfe296
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Oct 11 17:24:52 2020 +0300
gnu: Add lua-resty-core.
* gnu/packages/lua.scm (lua-resty-core): New variable.
---
gnu/packages/lua.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 5479b89..774df85 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -880,3 +880,40 @@ on numbers.")
"Selene is a simple C++11 header-only library enabling seamless
interoperability between C++ and Lua programming language.")
(license license:zlib)))
+
+(define-public lua-resty-core
+ (package
+ (name "lua-resty-core")
+ (version "0.1.17")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/openresty/lua-resty-core")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "11fyli6yrg7b91nv9v2sbrc6y7z3h9lgf4lrrhcjk2bb906576a0"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let* ((luajit-major+minor ,(version-major+minor (package-version
lua)))
+ (package-lua-resty (lambda (input output)
+ (mkdir-p (string-append output
"/lib/lua"))
+ (copy-recursively (string-append input
"/lib/resty")
+ (string-append output
"/lib/lua/resty"))
+ (copy-recursively (string-append input
"/lib/ngx")
+ (string-append output
"/lib/ngx"))
+ (symlink (string-append output
"/lib/lua/resty")
+ (string-append output
"/lib/resty")))))
+ (package-lua-resty (assoc-ref %build-inputs "source")
+ (assoc-ref %outputs "out")))
+ #t)))
+ (home-page "https://github.com/openresty/lua-resty-core")
+ (synopsis "Lua API for NGINX")
+ (description "This package provides a FFI-based Lua API for
+@code{ngx_http_lua_module} or @code{ngx_stream_lua_module}.")
+ (license license:bsd-2)))
- branch master updated (dd64251 -> 00014f7), guix-commits, 2020/10/14
- 03/08: gnu: Add lua-resty-signal., guix-commits, 2020/10/14
- 01/08: gnu: Add lua-resty-core.,
guix-commits <=
- 02/08: gnu: Add lua-resty-lrucache., guix-commits, 2020/10/14
- 04/08: gnu: Add lua-tablepool., guix-commits, 2020/10/14
- 06/08: gnu: Add nginx-socket-cloexec., guix-commits, 2020/10/14
- 07/08: gnu: Add nginx-lua-module., guix-commits, 2020/10/14
- 05/08: gnu: Add lua-resty-shell., guix-commits, 2020/10/14
- 08/08: services: nginx: Add lua module., guix-commits, 2020/10/14