~ruther/guix-local

ad42b4f4d58d7c802835711879a8fe92208e71b5 — VnPower 8 months ago c6ac4f9
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>
1 files changed, 29 insertions(+), 0 deletions(-)

M gnu/packages/fcitx5.scm
M gnu/packages/fcitx5.scm => gnu/packages/fcitx5.scm +29 -0
@@ 5,6 5,7 @@
;;; Copyright © 2022 dan <i@dan.games>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024 Charles <charles@charje.net>
;;; Copyright © 2025 VnPower <vnpower@loang.net>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 28,6 29,7 @@
  #:use-module (guix git-download)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system copy)
  #:use-module (guix build-system qt)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages anthy)
  #:use-module (gnu packages boost)


@@ 413,6 415,33 @@ the Anthy input method.")
backend.")
    (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
  (package
    (name "fcitx5-chewing")