mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: gtk: Use new style inputs.
* gnu/packages/gtk.scm (gtk)[native-inputs]: Use new style. [propagated-inputs]: Likewise.
This commit is contained in:
parent
9819aac1d8
commit
3f814d1878
1 changed files with 57 additions and 57 deletions
|
@ -1256,29 +1256,29 @@ (define-public gtk
|
|||
(string-append out "/share/doc")
|
||||
(string-append doc "/share/doc"))))))))
|
||||
(native-inputs
|
||||
`(("docbook-xml-4.3" ,docbook-xml-4.3)
|
||||
("docbook-xsl" ,docbook-xsl)
|
||||
("gettext-minimal" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection) ;for building introspection data
|
||||
("graphene" ,graphene)
|
||||
("gtk-doc" ,gtk-doc) ;for building documentation
|
||||
("intltool" ,intltool)
|
||||
("libxslt" ,libxslt) ;for building man-pages
|
||||
("pkg-config" ,pkg-config)
|
||||
("python-pygobject" ,python-pygobject)
|
||||
(list docbook-xml-4.3
|
||||
docbook-xsl
|
||||
gettext-minimal
|
||||
`(,glib "bin")
|
||||
gobject-introspection ;for building introspection data
|
||||
graphene
|
||||
gtk-doc ;for building documentation
|
||||
intltool
|
||||
libxslt ;for building man-pages
|
||||
pkg-config
|
||||
python-pygobject
|
||||
;; These python modules are required for building documentation.
|
||||
("python-docutils" ,python-docutils)
|
||||
("python-jinja2" ,python-jinja2)
|
||||
("python-markdown" ,python-markdown)
|
||||
("python-markupsafe" ,python-markupsafe)
|
||||
("python-pygments" ,python-pygments)
|
||||
("python-toml" ,python-toml)
|
||||
("python-typogrify" ,python-typogrify)
|
||||
("sassc" ,sassc) ;for building themes
|
||||
("tzdata" ,tzdata-for-tests)
|
||||
("vala" ,vala)
|
||||
("xorg-server-for-tests" ,xorg-server-for-tests)))
|
||||
python-docutils
|
||||
python-jinja2
|
||||
python-markdown
|
||||
python-markupsafe
|
||||
python-pygments
|
||||
python-toml
|
||||
python-typogrify
|
||||
sassc ;for building themes
|
||||
tzdata-for-tests
|
||||
vala
|
||||
xorg-server-for-tests))
|
||||
(inputs
|
||||
(list colord ;for color printing support
|
||||
cups ;for CUPS print-backend
|
||||
|
@ -1300,28 +1300,28 @@ (define-public gtk
|
|||
tracker)) ;for filechooser search support
|
||||
(propagated-inputs
|
||||
;; Following dependencies are referenced in .pc files.
|
||||
`(("cairo" ,cairo)
|
||||
("fontconfig" ,fontconfig)
|
||||
("librsvg" ,librsvg)
|
||||
("glib" ,glib)
|
||||
("graphene" ,graphene)
|
||||
("libepoxy" ,libepoxy)
|
||||
("libx11" ,libx11) ;for x11 display-backend
|
||||
("libxcomposite" ,libxcomposite)
|
||||
("libxcursor" ,libxcursor)
|
||||
("libxdamage" ,libxdamage)
|
||||
("libxext" ,libxext)
|
||||
("libxfixes" ,libxfixes)
|
||||
("libxi" ,libxi)
|
||||
("libxinerama" ,libxinerama) ;for xinerama support
|
||||
("libxkbcommon" ,libxkbcommon)
|
||||
("libxrandr" ,libxrandr)
|
||||
("libxrender" ,libxrender)
|
||||
("pango" ,pango-next)
|
||||
("vulkan-headers" ,vulkan-headers)
|
||||
("vulkan-loader" ,vulkan-loader) ;for vulkan graphics API support
|
||||
("wayland" ,wayland) ;for wayland display-backend
|
||||
("wayland-protocols" ,wayland-protocols)))
|
||||
(list cairo
|
||||
fontconfig
|
||||
librsvg
|
||||
glib
|
||||
graphene
|
||||
libepoxy
|
||||
libx11 ;for x11 display-backend
|
||||
libxcomposite
|
||||
libxcursor
|
||||
libxdamage
|
||||
libxext
|
||||
libxfixes
|
||||
libxi
|
||||
libxinerama ;for xinerama support
|
||||
libxkbcommon
|
||||
libxrandr
|
||||
libxrender
|
||||
pango-next
|
||||
vulkan-headers
|
||||
vulkan-loader ;for vulkan graphics API support
|
||||
wayland ;for wayland display-backend
|
||||
wayland-protocols))
|
||||
(native-search-paths
|
||||
(list
|
||||
(search-path-specification
|
||||
|
|
Loading…
Reference in a new issue