diff options
author | 宋文武 <[email protected]> | 2025-02-11 12:29:06 +0800 |
---|---|---|
committer | 宋文武 <[email protected]> | 2025-02-11 19:47:23 +0800 |
commit | 59be8fa610a389ec365f2fdab738a9e4ae3ce9a3 (patch) | |
tree | ac459878a9e43c0c9dc2a981d929b9260b7a18b2 /gnu/packages/fcitx5.scm | |
parent | eb1a3d9ee5c40cdaccb436ea6464cb39a443c923 (diff) |
gnu: fcitx5-lua: Update to 5.0.14.
* gnu/packages/fcitx5.scm (fcitx5-lua): Update to 5.0.14.
[inputs]: Remove libpthread-stubs.
Change-Id: I99cce203ffad4ccd7faa2e590b8cc611b606b0d0
Diffstat (limited to 'gnu/packages/fcitx5.scm')
-rw-r--r-- | gnu/packages/fcitx5.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/fcitx5.scm b/gnu/packages/fcitx5.scm index 59a0844424..123bebf2c3 100644 --- a/gnu/packages/fcitx5.scm +++ b/gnu/packages/fcitx5.scm @@ -145,22 +145,22 @@ client.") (define-public fcitx5-lua (package (name "fcitx5-lua") - (version "5.0.12") + (version "5.0.14") (source (origin (method url-fetch) (uri (string-append "https://download.fcitx-im.org/fcitx5/fcitx5-lua/fcitx5-lua-" - version ".tar.xz")) + version ".tar.zst")) (sha256 - (base32 "00kh0qzpzkfsnfh55lrpjpi5zs82vwpc9pb1n6f61gpgpiqxh7z4")))) + (base32 "0lmw62pd8x5ys8ci0dz43pw8q8401zjcfs24gjslbljhc4aqnp9r")))) (build-system cmake-build-system) (arguments (list #:configure-flags #~(list "-DUSE_DLOPEN=OFF"))) (inputs - (list fcitx5 lua gettext-minimal libpthread-stubs)) + (list fcitx5 lua gettext-minimal)) (native-inputs (list extra-cmake-modules)) (home-page "https://github.com/fcitx/fcitx5-lua") |