diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-01-09 22:38:04 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-03-02 20:31:42 +0100 |
| commit | 190155f7692bc0ccd643dbca08a270ec7e154650 (patch) | |
| tree | e6116475ab948702644ad464b242b0f6a1ceea0a /gnu/packages/web.scm | |
| parent | 2379ec2327d511b72151c94c444b79333c3ec7f5 (diff) | |
gnu: uhttpmock: Use G-Expressions.
* gnu/packages/web.scm (uhttpmock)[arguments]: Change to list of G-Expressions.
Diffstat (limited to 'gnu/packages/web.scm')
| -rw-r--r-- | gnu/packages/web.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 74b9e136845..88d30e3638d 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -5770,13 +5770,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 |
