diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-05 23:02:23 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-05 23:42:28 +0100 |
commit | e67f6aa8eb6e3923889db6d6de57464ae7381e6e (patch) | |
tree | 41f8722dfd476c1614022ec0c8d39226e7c8ea7c | |
parent | a268115ca3d62a09ad2be216295cdeaff37872f0 (diff) | |
download | guix-e67f6aa8eb6e3923889db6d6de57464ae7381e6e.tar.gz |
gnu: goffice: Use librsvg-for-system.
This lets us build goffice for i686-linux. * gnu/packages/gnome.scm (goffice)[inputs]: Replace librsvg with librsvg-for-system.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 0b7d10c6a8..15830fd431 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4335,7 +4335,7 @@ Hints specification (EWMH).") (assoc-ref %outputs "doc") "/share/gtk-doc/html")))) (inputs - (list gtk+ libgsf librsvg libxslt libxml2)) + (list gtk+ libgsf (librsvg-for-system) libxslt libxml2)) (native-inputs (list intltool `(,glib "bin") pkg-config)) (home-page "https://developer.gnome.org/goffice/") |