mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
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>
This commit is contained in:
parent
b574ccc453
commit
18b1497673
1 changed files with 4 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
;;; Copyright © 2020 Pjotr Prins <pjotr.guix@thebird.nl>
|
;;; Copyright © 2020 Pjotr Prins <pjotr.guix@thebird.nl>
|
||||||
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
||||||
;;; Copyright © 2021 Giacomo Leidi <goodoldpaul@autistici.org>
|
;;; Copyright © 2021 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
|
;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -346,12 +347,14 @@ (define-public xdot
|
||||||
(assoc-ref inputs "gtk+") "/lib/girepository-1.0"
|
(assoc-ref inputs "gtk+") "/lib/girepository-1.0"
|
||||||
":" (assoc-ref inputs "pango") "/lib/girepository-1.0"
|
":" (assoc-ref inputs "pango") "/lib/girepository-1.0"
|
||||||
":" (assoc-ref inputs "gdk-pixbuf") "/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
|
`("PATH" ":" prefix
|
||||||
(,(dirname (search-input-file inputs "bin/dot"))))))))))
|
(,(dirname (search-input-file inputs "bin/dot"))))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list atk
|
(list atk
|
||||||
librsvg
|
librsvg
|
||||||
|
harfbuzz
|
||||||
graphviz
|
graphviz
|
||||||
gtk+
|
gtk+
|
||||||
python-pycairo
|
python-pycairo
|
||||||
|
|
Loading…
Reference in a new issue