mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -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 out "/share/doc")
|
||||||
(string-append doc "/share/doc"))))))))
|
(string-append doc "/share/doc"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("docbook-xml-4.3" ,docbook-xml-4.3)
|
(list docbook-xml-4.3
|
||||||
("docbook-xsl" ,docbook-xsl)
|
docbook-xsl
|
||||||
("gettext-minimal" ,gettext-minimal)
|
gettext-minimal
|
||||||
("glib:bin" ,glib "bin")
|
`(,glib "bin")
|
||||||
("gobject-introspection" ,gobject-introspection) ;for building introspection data
|
gobject-introspection ;for building introspection data
|
||||||
("graphene" ,graphene)
|
graphene
|
||||||
("gtk-doc" ,gtk-doc) ;for building documentation
|
gtk-doc ;for building documentation
|
||||||
("intltool" ,intltool)
|
intltool
|
||||||
("libxslt" ,libxslt) ;for building man-pages
|
libxslt ;for building man-pages
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("python-pygobject" ,python-pygobject)
|
python-pygobject
|
||||||
;; These python modules are required for building documentation.
|
;; These python modules are required for building documentation.
|
||||||
("python-docutils" ,python-docutils)
|
python-docutils
|
||||||
("python-jinja2" ,python-jinja2)
|
python-jinja2
|
||||||
("python-markdown" ,python-markdown)
|
python-markdown
|
||||||
("python-markupsafe" ,python-markupsafe)
|
python-markupsafe
|
||||||
("python-pygments" ,python-pygments)
|
python-pygments
|
||||||
("python-toml" ,python-toml)
|
python-toml
|
||||||
("python-typogrify" ,python-typogrify)
|
python-typogrify
|
||||||
("sassc" ,sassc) ;for building themes
|
sassc ;for building themes
|
||||||
("tzdata" ,tzdata-for-tests)
|
tzdata-for-tests
|
||||||
("vala" ,vala)
|
vala
|
||||||
("xorg-server-for-tests" ,xorg-server-for-tests)))
|
xorg-server-for-tests))
|
||||||
(inputs
|
(inputs
|
||||||
(list colord ;for color printing support
|
(list colord ;for color printing support
|
||||||
cups ;for CUPS print-backend
|
cups ;for CUPS print-backend
|
||||||
|
@ -1300,28 +1300,28 @@ (define-public gtk
|
||||||
tracker)) ;for filechooser search support
|
tracker)) ;for filechooser search support
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; Following dependencies are referenced in .pc files.
|
;; Following dependencies are referenced in .pc files.
|
||||||
`(("cairo" ,cairo)
|
(list cairo
|
||||||
("fontconfig" ,fontconfig)
|
fontconfig
|
||||||
("librsvg" ,librsvg)
|
librsvg
|
||||||
("glib" ,glib)
|
glib
|
||||||
("graphene" ,graphene)
|
graphene
|
||||||
("libepoxy" ,libepoxy)
|
libepoxy
|
||||||
("libx11" ,libx11) ;for x11 display-backend
|
libx11 ;for x11 display-backend
|
||||||
("libxcomposite" ,libxcomposite)
|
libxcomposite
|
||||||
("libxcursor" ,libxcursor)
|
libxcursor
|
||||||
("libxdamage" ,libxdamage)
|
libxdamage
|
||||||
("libxext" ,libxext)
|
libxext
|
||||||
("libxfixes" ,libxfixes)
|
libxfixes
|
||||||
("libxi" ,libxi)
|
libxi
|
||||||
("libxinerama" ,libxinerama) ;for xinerama support
|
libxinerama ;for xinerama support
|
||||||
("libxkbcommon" ,libxkbcommon)
|
libxkbcommon
|
||||||
("libxrandr" ,libxrandr)
|
libxrandr
|
||||||
("libxrender" ,libxrender)
|
libxrender
|
||||||
("pango" ,pango-next)
|
pango-next
|
||||||
("vulkan-headers" ,vulkan-headers)
|
vulkan-headers
|
||||||
("vulkan-loader" ,vulkan-loader) ;for vulkan graphics API support
|
vulkan-loader ;for vulkan graphics API support
|
||||||
("wayland" ,wayland) ;for wayland display-backend
|
wayland ;for wayland display-backend
|
||||||
("wayland-protocols" ,wayland-protocols)))
|
wayland-protocols))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list
|
(list
|
||||||
(search-path-specification
|
(search-path-specification
|
||||||
|
|
Loading…
Reference in a new issue