mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: orca: Update to 42.3.
* gnu/packages/gnome.scm (orca): Update to 42.3. [phases]{wrap-orca}: Use search-input-file. [native-inputs]: Remove intltool; add gettext-minimal. [inputs]: Add bash-minimal.
This commit is contained in:
parent
bd9742938c
commit
be1c940d3a
1 changed files with 11 additions and 12 deletions
|
@ -10779,7 +10779,7 @@ (define-public python-pyatspi
|
|||
(define-public orca
|
||||
(package
|
||||
(name "orca")
|
||||
(version "41.0")
|
||||
(version "42.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -10788,7 +10788,7 @@ (define-public orca
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1gflnsv6d5qn5rh1f16yfa0q0yv8yvd0l5lbwrsdg7z18lafb5vn"))))
|
||||
"097pyav3z5ssic8vwd7v1s7vynpycdpyfr324rr6c7mfzq5vmp7s"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
|
@ -10801,22 +10801,21 @@ (define-public orca
|
|||
(("'xkbcomp'") (format #f "'~a'" xkbcomp))))))
|
||||
(add-after 'install 'wrap-orca
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(prog (string-append out "/bin/orca")))
|
||||
(wrap-program prog
|
||||
`("GI_TYPELIB_PATH" ":" prefix
|
||||
(,(getenv "GI_TYPELIB_PATH")))
|
||||
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix
|
||||
(,(getenv "GST_PLUGIN_SYSTEM_PATH")))
|
||||
`("GUIX_PYTHONPATH" ":" prefix
|
||||
(,(getenv "GUIX_PYTHONPATH"))))))))))
|
||||
(wrap-program (search-input-file outputs "bin/orca")
|
||||
`("GI_TYPELIB_PATH" ":" prefix
|
||||
(,(getenv "GI_TYPELIB_PATH")))
|
||||
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix
|
||||
(,(getenv "GST_PLUGIN_SYSTEM_PATH")))
|
||||
`("GUIX_PYTHONPATH" ":" prefix
|
||||
(,(getenv "GUIX_PYTHONPATH")))))))))
|
||||
(native-inputs
|
||||
(list intltool
|
||||
(list gettext-minimal
|
||||
itstool
|
||||
pkg-config
|
||||
libxml2))
|
||||
(inputs
|
||||
(list at-spi2-atk
|
||||
bash-minimal
|
||||
gsettings-desktop-schemas
|
||||
gstreamer
|
||||
gst-plugins-base
|
||||
|
|
Loading…
Reference in a new issue