[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: xdot: Build with harfbuzz.
From: |
guix-commits |
Subject: |
branch master updated: gnu: xdot: Build with harfbuzz. |
Date: |
Wed, 15 Dec 2021 17:41:07 -0500 |
This is an automated email from the git hooks/post-receive script.
lfam pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 18b1497 gnu: xdot: Build with harfbuzz.
18b1497 is described below
commit 18b1497673b92b6a0947839f9757a561a77d0d5f
Author: terramorpha <terramorpha@cock.li>
AuthorDate: Wed Dec 15 17:01:02 2021 -0500
gnu: xdot: Build with harfbuzz.
This fixes a crash when launching xdot.
* gnu/packages/graphviz.scm (xdot)[inputs]: Add harfbuzz.
[arguments]: Add harfbuzz to the GI_TYPELIB_PATH wrapper in the 'wrap'
phase.
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/packages/graphviz.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index c4dfd49..ab39e49 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2020 Pjotr Prins <pjotr.guix@thebird.nl>
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
;;; Copyright © 2021 Giacomo Leidi <goodoldpaul@autistici.org>
+;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -346,12 +347,14 @@ Graphviz and LaTeX.")
(assoc-ref inputs "gtk+") "/lib/girepository-1.0"
":" (assoc-ref inputs "pango") "/lib/girepository-1.0"
":" (assoc-ref inputs "gdk-pixbuf") "/lib/girepository-1.0"
- ":" (assoc-ref inputs "atk") "/lib/girepository-1.0")))
+ ":" (assoc-ref inputs "atk") "/lib/girepository-1.0"
+ ":" (assoc-ref inputs "harfbuzz")
"/lib/girepository-1.0")))
`("PATH" ":" prefix
(,(dirname (search-input-file inputs "bin/dot"))))))))))
(inputs
(list atk
librsvg
+ harfbuzz
graphviz
gtk+
python-pycairo
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: xdot: Build with harfbuzz.,
guix-commits <=