gnu: nginx-rtmp-module: Fix builder.
Probably broken by changes to the nginx package in
4079cd9ba3
.
* gnu/packages/web.scm (nginx-rtmp-module)[arguments]: Make the modify-phases
part a gexp, and move #:configure-flags to the end of the list.
This commit is contained in:
parent
d0f6b8d7b0
commit
a14c635266
1 changed files with 25 additions and 25 deletions
|
@ -786,13 +786,13 @@ programming language.")))
|
|||
,@(package-inputs nginx)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
`(#:configure-flags '("--add-dynamic-module=.")
|
||||
#:make-flags '("modules")
|
||||
`(#:make-flags '("modules")
|
||||
#:modules ((guix build utils)
|
||||
(guix build gnu-build-system))
|
||||
,@(package-arguments nginx))
|
||||
,@(package-arguments nginx)
|
||||
#:configure-flags '("--add-dynamic-module=."))
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'unpack 'unpack-nginx-sources
|
||||
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||
(begin
|
||||
|
|
Reference in a new issue