GNU bug report logs -
#55253
nginx-rtmp-module not compatible with nginx
Previous Next
Reported by: Jack Hill <jackhill <at> jackhill.us>
Date: Wed, 4 May 2022 04:20:02 UTC
Severity: normal
Tags: patch
Done: Jack Hill <jackhill <at> jackhill.us>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Hi Jack,
Jack Hill <jackhill <at> jackhill.us> skribis:
> * 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, 3 insertions(+), 6 deletions(-)
>
> diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
> index 600ef0c895..50401c07e1 100644
> --- a/gnu/packages/web.scm
> +++ b/gnu/packages/web.scm
> @@ -785,12 +785,9 @@ (define-public nginx-rtmp-module
> `(("nginx-sources" ,(package-source nginx))
> ,@(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=."))
> + (substitute-keyword-arguments (package-arguments nginx)
> + ((#:configure-flags flags)
> + #~(cons "--add-dynamic-module=." #$flags))
If I’m not mistaken, #:make-flags and #:modules are lost here, no?
Or were they unnecessary in the first place?
Thanks,
Ludo’.
This bug report was last modified 3 years and 58 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.