mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 05:09:33 -05:00
gnu: at-spi2-atk: Update to 2.38.0.
* gnu/packages/gtk.scm (at-spi2-atk) [version]: Update to 2.38.0 [arguments]<#:glib-or-gtk?>: New argument. [native-inputs]: Add gobject-introspection. [inputs]: Add glib. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
This commit is contained in:
parent
e2e527f0b4
commit
a14de3946c
1 changed files with 37 additions and 35 deletions
|
@ -784,7 +784,7 @@ (define at-spi2-core-minimal
|
||||||
(define-public at-spi2-atk
|
(define-public at-spi2-atk
|
||||||
(package
|
(package
|
||||||
(name "at-spi2-atk")
|
(name "at-spi2-atk")
|
||||||
(version "2.34.1")
|
(version "2.38.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -792,10 +792,11 @@ (define-public at-spi2-atk
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05ncp7s5nddjinffs26mcvpbd63vk1m3cv5y530p3plgfhqgjvbp"))))
|
"0ks6r9sx27l80n3a7yjmkilxv48cqj183wc7cap3caw2myjhi86g"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
;; Run test-suite under a dbus session.
|
;; Run test-suite under a dbus session.
|
||||||
|
@ -807,12 +808,13 @@ (define-public at-spi2-atk
|
||||||
;; when Inkscape 0.92 is upgraded to 1.0 to avoid a cycle.
|
;; when Inkscape 0.92 is upgraded to 1.0 to avoid a cycle.
|
||||||
`(("at-spi2-core" ,at-spi2-core))) ; required by atk-bridge-2.0.pc
|
`(("at-spi2-core" ,at-spi2-core))) ; required by atk-bridge-2.0.pc
|
||||||
(inputs
|
(inputs
|
||||||
`(("atk" ,atk)))
|
`(("atk" ,atk)
|
||||||
|
("glib" ,glib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("dbus" ,dbus) ; For tests
|
||||||
;; For tests.
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("dbus" ,dbus)
|
("libxml2" ,libxml2)
|
||||||
("libxml2" ,libxml2)))
|
("pkg-config" ,pkg-config)))
|
||||||
(synopsis "Assistive Technology Service Provider Interface, ATK bindings")
|
(synopsis "Assistive Technology Service Provider Interface, ATK bindings")
|
||||||
(description
|
(description
|
||||||
"The Assistive Technology Service Provider Interface
|
"The Assistive Technology Service Provider Interface
|
||||||
|
|
Loading…
Reference in a new issue