mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: fcitx5: Update to 5.1.9.
* gnu/packages/fcitx5.scm (fcitx5): Update to 5.1.9. [source]: Use zst source. [native-inputs]: Add zstd. The additional zstd input is needed because the upstream release compression method has changed. Change-Id: I0e7b230d0c86637be3a6b81202221d68af16934d Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
parent
82174b2742
commit
4b213c2f1d
1 changed files with 6 additions and 4 deletions
|
@ -89,15 +89,15 @@ (define-public xcb-imdkit
|
||||||
(define-public fcitx5
|
(define-public fcitx5
|
||||||
(package
|
(package
|
||||||
(name "fcitx5")
|
(name "fcitx5")
|
||||||
(version "5.1.7")
|
(version "5.1.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-"
|
"https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-"
|
||||||
version "_dict.tar.xz"))
|
version "_dict.tar.zst"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1wnky24a8jy4nwairzbb00j0rnn8qr2105va3kpymnvh0cyh0rwa"))))
|
(base32 "1r6wyxxghl673q8wmp9519s1gwg8w18mrjg3zkg9qyln3hccyhvs"))))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags #~(list "-DUSE_SYSTEMD=OFF")))
|
(list #:configure-flags #~(list "-DUSE_SYSTEMD=OFF")))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
@ -128,7 +128,9 @@ (define-public fcitx5
|
||||||
("xcb-util-wm" ,xcb-util-wm)
|
("xcb-util-wm" ,xcb-util-wm)
|
||||||
("xkeyboard-config" ,xkeyboard-config)))
|
("xkeyboard-config" ,xkeyboard-config)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list extra-cmake-modules pkg-config))
|
(list extra-cmake-modules
|
||||||
|
zstd
|
||||||
|
pkg-config))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "FCITX_ADDON_DIRS")
|
(variable "FCITX_ADDON_DIRS")
|
||||||
|
|
Loading…
Reference in a new issue