diff options
author | Denis 'GNUtoo' Carikli <[email protected]> | 2022-07-24 03:33:51 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2022-08-01 14:08:07 +0200 |
commit | 49000523d22e31334525fedb9a8913dd8f2e21a0 (patch) | |
tree | d7e9dcec442ee34060205426d8f79aa0049b4f70 /gnu | |
parent | 4f57da766812ce9ce0c9b924c04a6ad907022a24 (diff) |
gnu: xdot: Build with librsvg-for-system.
* gnu/packages/graphviz.scm (xdot)[inputs]: Replace librsvg with
librsvg-for-system.
Signed-off-by: Ludovic Courtès <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/graphviz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm index 68d0741957..a49fe348e8 100644 --- a/gnu/packages/graphviz.scm +++ b/gnu/packages/graphviz.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2021 Bonface Munyoki Kilyungi <[email protected]> ;;; Copyright © 2021 Giacomo Leidi <[email protected]> ;;; Copyright © 2021 Justin Veilleux <[email protected]> +;;; Copyright © 2021 Denis 'GNUtoo' Carikli <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -350,7 +351,7 @@ Graphviz and LaTeX.") (,(dirname (search-input-file inputs "bin/dot")))))))))) (inputs (list atk - librsvg + (librsvg-for-system) harfbuzz graphviz gtk+ |