lilyp pushed a commit to branch gnome-team
in repository guix.
commit 32f15138b9e2c850166d253f3cb16b900260873a
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Thu Jan 9 22:38:04 2025 +0100
gnu: uhttpmock: Use G-Expressions.
* gnu/packages/web.scm (uhttpmock)[arguments]: Change to list of
G-Expressions.
---
gnu/packages/web.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 839c3fbc52..c55ac6a1bb 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5707,13 +5707,13 @@ fast and flexible way of exploring HTML from the
terminal.")
glib-networking gsettings-desktop-schemas pkg-config))
(inputs (list libsoup))
(arguments
- `(#:glib-or-gtk? #t
- #:configure-flags '("-Dgtk_doc=false")
- #:phases
- (modify-phases %standard-phases
- (add-before 'check 'set-home-for-tests
- (lambda _
- (setenv "HOME" "/tmp"))))))
+ (list #:glib-or-gtk? #t
+ #:configure-flags #~(list "-Dgtk_doc=false")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'set-home-for-tests
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
(home-page "https://gitlab.com/groups/uhttpmock")
(synopsis "Library for mocking web service APIs which use HTTP or HTTPS")
(description