[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55253] [PATCH v2 1/2] gnu: nginx-rtmp-module: Use #:configure-flags
From: |
Jack Hill |
Subject: |
[bug#55253] [PATCH v2 1/2] gnu: nginx-rtmp-module: Use #:configure-flags from nginx. |
Date: |
Thu, 26 May 2022 22:04:03 -0400 |
* gnu/packages/web.scm (nginx-rtmp-module)[arguments]: Simplify copying
of arguments from nginx and augment #:configure-flags from nginx
rather than overwriting.
---
gnu/packages/web.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index ffcb709e82..e349a863d5 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -793,11 +793,10 @@ (define-public nginx-rtmp-module
,@(package-inputs nginx)))
(arguments
(substitute-keyword-arguments
- `(#:make-flags '("modules")
- #:modules ((guix build utils)
- (guix build gnu-build-system))
- ,@(package-arguments nginx)
- #:configure-flags '("--add-dynamic-module=."))
+ `(#: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
--
2.36.1
- [bug#55253] [PATCH 0/2] nginx-rtmp-module use nginx's #:configure-flags and update to gexps in phases, Jack Hill, 2022/05/22
- [bug#55253] [PATCH 1/2] gnu: nginx-rtmp-module: Use #:configure-flags from nginx., Jack Hill, 2022/05/22
- [bug#55253] [PATCH 2/2] gnu: nginx-rtmp-module: Use gexps in phases., Jack Hill, 2022/05/22
- [bug#55253] nginx-rtmp-module not compatible with nginx, Ludovic Courtès, 2022/05/23
- [bug#55253] nginx-rtmp-module not compatible with nginx, Jack Hill, 2022/05/23
- [bug#55253] nginx-rtmp-module not compatible with nginx, Jack Hill, 2022/05/26
- [bug#55253] [PATCH v2 1/2] gnu: nginx-rtmp-module: Use #:configure-flags from nginx.,
Jack Hill <=
- [bug#55253] [PATCH v2 2/2] gnu: nginx-rtmp-module: Use gexps in phases., Jack Hill, 2022/05/26
- [bug#55253] [PATCH v2 2/2] gnu: nginx-rtmp-module: Use gexps in phases., Christopher Baines, 2022/05/27
- bug#55253: [PATCH v2 2/2] gnu: nginx-rtmp-module: Use gexps in phases., Jack Hill, 2022/05/27