gnu: nginx-lua-module: Fix builder.
Probably broken by the changes to the nginx package in
4079cd9ba3
.
* gnu/packages/web.scm (nginx-lua-module)[arguments]: Make the modify-phases
part a gexp, and move #:configure-flags to the end of the list.
master
parent
a14c635266
commit
fa1b772fb3
|
@ -726,16 +726,16 @@ documentation.")
|
||||||
,@(package-inputs nginx)))
|
,@(package-inputs nginx)))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments
|
(substitute-keyword-arguments
|
||||||
`(#:configure-flags '("--add-dynamic-module=.")
|
`(#:make-flags '("modules")
|
||||||
#:make-flags '("modules")
|
|
||||||
#:modules ((guix build utils)
|
#:modules ((guix build utils)
|
||||||
(guix build gnu-build-system)
|
(guix build gnu-build-system)
|
||||||
(ice-9 popen)
|
(ice-9 popen)
|
||||||
(ice-9 regex)
|
(ice-9 regex)
|
||||||
(ice-9 textual-ports))
|
(ice-9 textual-ports))
|
||||||
,@(package-arguments nginx))
|
,@(package-arguments nginx)
|
||||||
|
#:configure-flags '("--add-dynamic-module=."))
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'unpack 'unpack-nginx-sources
|
(add-after 'unpack 'unpack-nginx-sources
|
||||||
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||||
(begin
|
(begin
|
||||||
|
|
Reference in New Issue