From 4d6a9364bb03d5cda9090ac44bd3c9dd1ea9abe8 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 28 Jun 2022 00:13:00 +0200 Subject: 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.") -- cgit v1.2.3