diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-06 18:15:59 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-06 18:36:04 -0400 |
commit | 2a2af3ccfa9817c47157f1113a088366b4aa85e5 (patch) | |
tree | d2dd12416c18461e9b52c4a6300d81adbb22e755 | |
parent | 3a5df46ef4579b13b667feb4665c76d4c5ee9f01 (diff) | |
download | guix-2a2af3ccfa9817c47157f1113a088366b4aa85e5.tar.gz |
gnu: gtksourceview: Add missing input as per pkg-config file.
* gnu/packages/gtk.scm (gtksourceview)[propagated-inputs]: Add fribidi.
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index b05529ac98..fa3a69d46d 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -573,7 +573,8 @@ printing and other features typical of a source code editor.") ("shared-mime-info" ,shared-mime-info))) (propagated-inputs ;; gtksourceview-3.0.pc refers to all these. - `(("glib" ,glib) + `(("fribidi" ,fribidi) + ("glib" ,glib) ("gtk+" ,gtk+) ("libxml2" ,libxml2))) (home-page "https://wiki.gnome.org/Projects/GtkSourceView") |