[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/08: gnu: Add lua-tablepool.
From: |
guix-commits |
Subject: |
04/08: gnu: Add lua-tablepool. |
Date: |
Wed, 14 Oct 2020 16:41:45 -0400 (EDT) |
wigust pushed a commit to branch master
in repository guix.
commit 0100fd06c947225b44ccc72069886cc8be10f6bc
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Oct 11 17:26:53 2020 +0300
gnu: Add lua-tablepool.
* gnu/packages/lua.scm (lua-tablepool): New variable.
---
gnu/packages/lua.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 60f88c1..d30692d 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -992,3 +992,35 @@ on numbers.")
(description "This package provides Lua library for killing or sending
signals to Linux processes.")
(license license:bsd-3)))
+
+(define-public lua-tablepool
+ (package
+ (name "lua-tablepool")
+ (version "0.01")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/openresty/lua-tablepool")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "03yjj3w6znvj6843prg84m0lkrn49l901f9hj9bgy3cj9s0awl6y"))))
+ (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/" luajit-major+minor))
+ (copy-recursively (string-append input
"/lib")
+ (string-append output
"/lib")))))
+ (package-lua-resty (assoc-ref %build-inputs "source")
+ (assoc-ref %outputs "out")))
+ #t)))
+ (home-page "https://github.com/openresty/lua-tablepool")
+ (synopsis "Lua table recycling pools for LuaJIT")
+ (description "This package provides Lua table recycling pools for LuaJIT.")
+ (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, 2020/10/14
- 02/08: gnu: Add lua-resty-lrucache., guix-commits, 2020/10/14
- 04/08: gnu: Add lua-tablepool.,
guix-commits <=
- 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