guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

16/22: gnu: emacs-next: Add harfbuzz (text shaping engine) to inputs.


From: guix-commits
Subject: 16/22: gnu: emacs-next: Add harfbuzz (text shaping engine) to inputs.
Date: Sun, 29 Mar 2020 16:37:50 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 5b8a60ff5dc8679a76220ad0031f1c7e725a86e7
Author: Alexey Abramov <address@hidden>
AuthorDate: Wed Jan 29 18:05:55 2020 +0100

    gnu: emacs-next: Add harfbuzz (text shaping engine) to inputs.
    
    * gnu/packages/emacs.scm (emacs-next)[inputs]: Add harfbuzz.
    [arguments]: Enable harfbuzz in #:configure-flags.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/emacs.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index ec8de73..3d0368b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -290,6 +290,8 @@ languages.")
              #t))))
       (arguments
        (substitute-keyword-arguments (package-arguments emacs)
+         ((#:configure-flags flags)
+          `(cons* "--with-harfbuzz" ,flags))
          ((#:phases phases)
           `(modify-phases ,phases
              ;; The 'reset-gzip-timestamps phase will throw a
@@ -318,6 +320,7 @@ languages.")
                    #t)))))))
       (inputs
        `(("jansson" ,jansson)
+         ("harfbuzz" ,harfbuzz)
          ,@(package-inputs emacs)))
       (native-inputs
        `(("autoconf" ,autoconf)      ; needed when building from trunk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]