[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43933] [PATCH 3/8] gnu: Add lua-resty-signal.
From: |
Oleg Pykhalov |
Subject: |
[bug#43933] [PATCH 3/8] gnu: Add lua-resty-signal. |
Date: |
Sun, 11 Oct 2020 21:30:07 +0300 |
* gnu/packages/lua.scm (lua-resty-signal): New variable.
---
gnu/packages/lua.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 59d449dfe5..60f88c1536 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -952,3 +952,43 @@ on numbers.")
(description
"This package provides Lua LRU cache based on the LuaJIT FFI.")
(license license:bsd-2)))
+
+(define-public lua-resty-signal
+ (package
+ (name "lua-resty-signal")
+ (version "0.02")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/openresty/lua-resty-signal")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "13y1pqn45y49mhqwywasfdsid46d0c33yi6mrnracbnmvyxz1cif"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ;TODO: Run the test suite.
+ #:make-flags (list "CC=gcc"
+ (string-append "PREFIX=" %output))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (add-after 'install 'install-lua
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (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/resty")
+ (string-append
output "/lib/lua/" luajit-major+minor "/resty"))
+ (symlink (string-append output
"/lib/lua/" luajit-major+minor "/resty")
+ (string-append output
"/lib/resty")))))
+ (package-lua-resty (assoc-ref inputs "source")
+ (assoc-ref outputs "out")))
+ #t)))))
+ (home-page "https://github.com/openresty/lua-resty-signal")
+ (synopsis "Lua library for killing or sending signals to Linux processes")
+ (description "This package provides Lua library for killing or sending
+signals to Linux processes.")
+ (license license:bsd-3)))
--
2.28.0
- [bug#43933] [PATCH 0/8] services: nginx: Add lua module., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 1/8] gnu: Add lua-resty-core., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 3/8] gnu: Add lua-resty-signal.,
Oleg Pykhalov <=
- [bug#43933] [PATCH 8/8] services: nginx: Add lua module., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 4/8] gnu: Add lua-tablepool., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 2/8] gnu: Add lua-resty-lrucache., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 5/8] gnu: Add lua-resty-shell., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 7/8] gnu: Add nginx-lua-module., Oleg Pykhalov, 2020/10/11
- [bug#43933] [PATCH 6/8] gnu: Add nginx-socket-cloexec., Oleg Pykhalov, 2020/10/11
- bug#43933: [PATCH 1/8] gnu: Add lua-resty-core., Oleg Pykhalov, 2020/10/14