diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-11 12:11:02 -0500 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-05 10:26:18 -0400 |
commit | 5b6c813c9d6f04b250d78af9b73e93442c9c32cb (patch) | |
tree | 380332f8a8dd3edafa4e763ba39152d93abce461 | |
parent | 245d05f64577d59885ecd1248999d7defd2cc861 (diff) | |
download | guix-5b6c813c9d6f04b250d78af9b73e93442c9c32cb.tar.gz |
gnu: libgsf: Correct inputs.
* gnu/packages/gnome.scm (libgsf) [native-inputs]: Add python-wrapper. [propagated-inputs]: Move gdk-pixbuf to ... [inputs]: ... here. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d5c5535f02..4f997351b9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3301,13 +3301,14 @@ XML/CSS rendering engine.") ("gobject-introspection" ,gobject-introspection) ("perl" ,perl) ("perl-xml-parser" ,perl-xml-parser) - ("pkg-config" ,pkg-config))) + ("pkg-config" ,pkg-config) + ("python" ,python-wrapper))) (inputs `(("bzip2" ,bzip2) + ("gdk-pixbuf" ,gdk-pixbuf) ("zlib" ,zlib))) (propagated-inputs - `(("gdk-pixbuf" ,gdk-pixbuf) - ("glib" ,glib) + `(("glib" ,glib) ("libxml2" ,libxml2))) (home-page "https://www.gnome.org/projects/libgsf") (synopsis "GNOME's Structured File Library") |