mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: httpd: Rewrite using G-Expressions.
* gnu/packages/web.scm (httpd): Rewrite using G-Expressions. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
90f7b09550
commit
c1e59e89fc
1 changed files with 10 additions and 9 deletions
|
@ -303,15 +303,16 @@ (define-public httpd
|
|||
(native-inputs (list `(,pcre "bin"))) ;for 'pcre-config'
|
||||
(inputs (list apr apr-util openssl perl)) ; needed to run bin/apxs
|
||||
(arguments
|
||||
`(#:test-target "test"
|
||||
#:configure-flags (list "--enable-rewrite"
|
||||
"--enable-userdir"
|
||||
"--enable-vhost-alias"
|
||||
"--enable-ssl"
|
||||
"--enable-mime-magic"
|
||||
(string-append "--sysconfdir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/etc/httpd"))))
|
||||
(list
|
||||
#:test-target "test"
|
||||
#:configure-flags #~(list "--enable-rewrite"
|
||||
"--enable-userdir"
|
||||
"--enable-vhost-alias"
|
||||
"--enable-ssl"
|
||||
"--enable-mime-magic"
|
||||
(string-append "--sysconfdir="
|
||||
#$output
|
||||
"/etc/httpd"))))
|
||||
(synopsis "Featureful HTTP server")
|
||||
(description
|
||||
"The Apache HTTP Server Project is a collaborative software development
|
||||
|
|
Loading…
Reference in a new issue