[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: httpd: Rewrite using G-Expressions.
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: httpd: Rewrite using G-Expressions. |
Date: |
Tue, 24 Oct 2023 09:13:47 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 1bca46690c gnu: httpd: Rewrite using G-Expressions.
1bca46690c is described below
commit 1bca46690c6240310befc6208fb24a044bd4b437
Author: Bruno Victal <mirai@makinata.eu>
AuthorDate: Thu Oct 19 15:55:30 2023 +0100
gnu: httpd: Rewrite using G-Expressions.
* gnu/packages/web.scm (httpd): Rewrite using G-Expressions.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/web.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 218ad794ab..5823469a83 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -290,15 +290,16 @@
(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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: httpd: Rewrite using G-Expressions.,
guix-commits <=