mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add nginx-module-vts.
Depends on nginx http_stub_status_module. * gnu/packages/web.scm (nginx-module-vts): New variable. (nginx)[arguments]: Add "--with-http_stub_status_module" to #:configure-flags. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
fed3953d70
commit
4d2e35ebf8
1 changed files with 53 additions and 0 deletions
|
@ -60,6 +60,7 @@
|
|||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||||
;;; Copyright © 2022 jgart <jgart@dismail.de>
|
||||
;;; Copyright © 2023 Paul A. Patience <paul@apatience.com>
|
||||
;;; Copyright © 2022 Bruno Victal <mirai@makinata.eu>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -412,6 +413,7 @@ (define-public nginx
|
|||
"--with-debug"
|
||||
"--with-stream"
|
||||
"--with-stream_ssl_module"
|
||||
"--with-http_stub_status_module"
|
||||
;; Even when not cross-building, we pass the
|
||||
;; --crossbuild option to avoid customizing for the
|
||||
;; kernel version on the build machine.
|
||||
|
@ -836,6 +838,57 @@ (define-public nginx-rtmp-module
|
|||
stream. Remote control of the module is possible over HTTP.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public nginx-module-vts
|
||||
(package
|
||||
(inherit nginx)
|
||||
(name "nginx-module-vts")
|
||||
(version "0.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vozlt/nginx-module-vts")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "017298vpp1ra16xyfdbsczdrz0b0y67x6adkzcc98y6gb3kg52n7"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("nginx-sources" ,(package-source nginx))
|
||||
,@(package-inputs nginx)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
`(#:make-flags '("modules") ;Only build this module not all of nginx.
|
||||
,@(package-arguments nginx))
|
||||
((#:configure-flags flags)
|
||||
#~(cons "--add-dynamic-module=." #$flags))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'unpack 'unpack-nginx-sources
|
||||
(lambda _
|
||||
(begin
|
||||
;; The nginx source code is part of the module’s source.
|
||||
(format #t "decompressing nginx source code~%")
|
||||
(invoke "tar" "xvf" #$(this-package-input "nginx-sources")
|
||||
;; This package's LICENSE file would be
|
||||
;; overwritten with the one from nginx when
|
||||
;; unpacking the nginx source, so rename the nginx
|
||||
;; one when unpacking.
|
||||
"--transform=s,/LICENSE$,/LICENSE.nginx,"
|
||||
"--strip-components=1"))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((modules-dir (string-append #$output
|
||||
"/etc/nginx/modules")))
|
||||
(install-file "objs/ngx_http_vhost_traffic_status_module.so" modules-dir))))
|
||||
(delete 'fix-root-dirs)
|
||||
(delete 'install-man-page)))))
|
||||
(home-page "https://github.com/vozlt/nginx-module-vts")
|
||||
(synopsis "NGINX module for monitoring virtual host traffic status")
|
||||
(description "This NGINX module provides access to virtual host status information,
|
||||
similar to live activity monitoring provided with NGINX plus.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public lighttpd
|
||||
(package
|
||||
(name "lighttpd")
|
||||
|
|
Loading…
Reference in a new issue