mbakke pushed a commit to branch core-updates
in repository guix.

commit 4d6a9364bb03d5cda9090ac44bd3c9dd1ea9abe8
Author: Marius Bakke <mar...@gnu.org>
AuthorDate: Tue Jun 28 00:13:00 2022 +0200

    gnu: harfbuzz: Use G-expression.
    
    * gnu/packages/gtk.scm (harfbuzz)[arguments]: Convert to gexp.
---
 gnu/packages/gtk.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 6071b5ee5a..ae3b5a91e5 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -268,10 +268,10 @@ output.  Experimental backends include OpenGL, BeOS, 
OS/2, and DirectFB.")
            python-wrapper
            which))
     (arguments
-     `(#:configure-flags `("--with-graphite2"
-                           "--with-gobject"
-                           ,(string-append
-                             "--bindir=" (assoc-ref %outputs "bin") "/bin"))))
+     (list #:configure-flags
+           #~(list "--with-graphite2"
+                   "--with-gobject"
+                   (string-append "--bindir=" #$output:bin "/bin"))))
     (synopsis "OpenType text shaping engine")
     (description
      "HarfBuzz is an OpenType text shaping engine.")

Reply via email to