diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2023-11-11 09:05:12 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-11-22 20:32:49 +0800 |
commit | 6427b76e4206ceffd385b2cce19ca73f217758ac (patch) | |
tree | 188fb908a125a0cbacca5d1d132284030357a7ab | |
parent | 075ffb39b63faf73a59f39e40651dacb12d50413 (diff) |
gnu: libime: Update to 1.1.3.
* gnu/packages/fcitx5.scm (libime): Update to 1.1.3.
[inputs]: Add zstd:lib.
[native-inputs]: Add pkg-config and remove python.
Change-Id: Ia3a580c2292b68a8f492b29c37d7219a77271d54
-rw-r--r-- | gnu/packages/fcitx5.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/fcitx5.scm b/gnu/packages/fcitx5.scm index f87fef191f..5dc2af85b1 100644 --- a/gnu/packages/fcitx5.scm +++ b/gnu/packages/fcitx5.scm @@ -29,6 +29,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages anthy) #:use-module (gnu packages boost) + #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages datastructures) #:use-module (gnu packages enchant) @@ -164,19 +165,19 @@ client.") (define-public libime (package (name "libime") - (version "1.1.0") + (version "1.1.3") (source (origin (method url-fetch) (uri (string-append "https://download.fcitx-im.org/fcitx5/libime/libime-" version "_dict.tar.xz")) (sha256 - (base32 "0jqr9riwygr3c9qzs8hx46smhgys68bf6m70fmam819903a9gpf0")))) + (base32 "0c1zn4bi71a84jh7x0fly3xqrsjm08ja3sglxrkfm9snk0x6ybhf")))) (build-system cmake-build-system) (inputs - (list fcitx5 boost)) + (list fcitx5 boost (list zstd "lib"))) (native-inputs - (list extra-cmake-modules python)) ;needed to run test + (list extra-cmake-modules pkg-config)) (home-page "https://github.com/fcitx/libime") (synopsis "Library for implementing generic input methods") (description "Libime is a library for implementing various input method |