mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: Adjust more packages to GLib "bin" split.
* gnu/packages/glib.scm (dbus-glib): Add glib-bin to 'native-inputs'. (glibmm): Likewise. * gnu/packages/gstreamer.scm (gstreamer-0.10): Likewise. * gnu/packages/gtk.scm (gtksourceview): Likewise. * gnu/packages/qemu.scm (qemu-headless): Likewise. * gnu/packages/gnome.scm (librsvg, libbonobo, libgnomecanvas, libgnomeprint): Likewise.
This commit is contained in:
parent
426adbe827
commit
44add1ce19
5 changed files with 16 additions and 6 deletions
|
@ -321,7 +321,9 @@ (define dbus-glib
|
|||
(inputs
|
||||
`(("dbus" ,dbus)
|
||||
("expat" ,expat)
|
||||
("glib" ,glib)
|
||||
("glib" ,glib)))
|
||||
(native-inputs
|
||||
`(("glib" ,glib "bin")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(home-page "http://dbus.freedesktop.org/doc/dbus-glib/")
|
||||
(synopsis "D-Bus GLib bindings")
|
||||
|
@ -385,7 +387,8 @@ (define glibmm
|
|||
(("Gio::init.*$")
|
||||
"return 77;\n")))
|
||||
%standard-phases)))
|
||||
(inputs `(("pkg-config" ,pkg-config)))
|
||||
(inputs `(("pkg-config" ,pkg-config)
|
||||
("glib" ,glib "bin")))
|
||||
(propagated-inputs
|
||||
`(("libsigc++" ,libsigc++)
|
||||
("glib" ,glib)))
|
||||
|
|
|
@ -598,6 +598,7 @@ (define-public librsvg
|
|||
%standard-phases)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("glib" ,glib "bin") ; glib-mkenums, etc.
|
||||
("gobject-introspection" ,gobject-introspection))) ; g-ir-compiler, etc.
|
||||
(inputs
|
||||
`(("pango" ,pango)
|
||||
|
@ -719,6 +720,7 @@ (define-public libbonobo
|
|||
(native-inputs
|
||||
`(("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("glib" ,glib "bin")
|
||||
("flex" ,flex)
|
||||
("bison" ,bison)))
|
||||
(home-page "https://developer.gnome.org/libbonobo/")
|
||||
|
@ -922,6 +924,7 @@ (define-public libgnomecanvas
|
|||
("gtk+" ,gtk+-2)))
|
||||
(native-inputs
|
||||
`(("intltool" ,intltool)
|
||||
("glib" ,glib "bin")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(home-page "https://developer.gnome.org/libgnomecanvas/")
|
||||
(synopsis "Flexible widget for creating interactive structured graphics")
|
||||
|
@ -1010,6 +1013,7 @@ (define-public libgnomeprint
|
|||
("libxml2" ,libxml2)))
|
||||
(native-inputs
|
||||
`(("intltool" ,intltool)
|
||||
("glib" ,glib "bin")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(home-page "https://projects.gnome.org/gnome-print/home/faq.html")
|
||||
(synopsis "printing framework for GNOME")
|
||||
|
|
|
@ -92,6 +92,7 @@ (define-public gstreamer-0.10
|
|||
("flex" ,flex)
|
||||
("perl" ,perl)
|
||||
("pkg-config" ,pkg-config)
|
||||
("glib" ,glib "bin")
|
||||
("python" ,python-2)))))
|
||||
|
||||
(define-public gst-plugins-base
|
||||
|
|
|
@ -218,6 +218,7 @@ (define-public gtksourceview
|
|||
("shared-mime-info" ,shared-mime-info)))
|
||||
(native-inputs
|
||||
`(("intltool" ,intltool)
|
||||
("glib" ,glib "bin")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
|
|
@ -106,6 +106,7 @@ (define-public qemu-headless
|
|||
("attr" ,attr)))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)
|
||||
("python" ,python-2) ; incompatible with Python 3 according to error message
|
||||
("glib" ,glib "bin") ; gtester, etc.
|
||||
("texinfo" ,texinfo)
|
||||
("perl" ,perl)))
|
||||
(home-page "http://www.qemu-project.org")
|
||||
|
|
Loading…
Reference in a new issue