gnu: Add fcitx5-unikey.

* gnu/packages/fcitx5.scm (fcitx5-unikey): New variable

Change-Id: Ib0dc317718a7587cb2c3f2d614e5de4f2da45e2d
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
VnPower 2025-08-21 16:52:10 +07:00 committed by Hilton Chain
parent c6ac4f9e84
commit ad42b4f4d5
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -5,6 +5,7 @@
;;; Copyright © 2022 dan <i@dan.games> ;;; Copyright © 2022 dan <i@dan.games>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024 Charles <charles@charje.net> ;;; Copyright © 2024 Charles <charles@charje.net>
;;; Copyright © 2025 VnPower <vnpower@loang.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -28,6 +29,7 @@
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix build-system copy) #:use-module (guix build-system copy)
#:use-module (guix build-system qt)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages anthy) #:use-module (gnu packages anthy)
#:use-module (gnu packages boost) #:use-module (gnu packages boost)
@ -413,6 +415,33 @@ the Anthy input method.")
backend.") backend.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public fcitx5-unikey
(package
(name "fcitx5-unikey")
(version "5.1.7")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fcitx/fcitx5-unikey")
(commit version)))
(sha256
(base32 "0j82r63vn1rmjz2m92x6xksn548mmkiwcjkziqh6dp6aysxszvxx"))
(file-name (git-file-name name version))))
(build-system qt-build-system)
(arguments
(list #:qtbase qtbase))
(inputs
(list gettext-minimal
fcitx5
fcitx5-qt))
(native-inputs
(list extra-cmake-modules
pkg-config))
(home-page "https://github.com/fcitx/fcitx5-unikey")
(synopsis "Unikey (Vietnamese Input Method) engine support for Fcitx5")
(description "This provides Unikey input method support for Fcitx5.")
(license license:gpl2+)))
(define-public fcitx5-chewing (define-public fcitx5-chewing
(package (package
(name "fcitx5-chewing") (name "fcitx5-chewing")