blob: 05fd8119482370e37da41fd6ed1c0e21109fa480 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
(define-module (tojo-tokyo packages fcitx5)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system cmake)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages qt)
#:use-module (gnu packages language)
#:use-module (gnu packages dictionaries)
#:use-module (gnu packages fcitx5))
(define-public fcitx5-skk
(package
(name "fcitx5-skk")
(version "5.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.fcitx-im.org/fcitx5"
"/fcitx5-skk/fcitx5-skk-"
version ".tar.xz"))
(sha256
(base32 "0yfpl5p7llfs7bl89hwqry2jr9rhpggna2knlxy7scv8ffh3vnym"))))
(build-system cmake-build-system)
(arguments `(#:tests? #f))
(inputs (list fcitx5 fcitx5-qt qtbase-5 libskk skk-jisyo gettext-minimal))
(native-inputs
(list extra-cmake-modules glib pkg-config))
(home-page "https://github.com/fcitx/fcitx5-anthy")
(synopsis "An input method engine for Fcitx5, which uses libskk as its backend")
(description "Fcitx5-skk is an input method engine for Fcitx5, which uses libskk as its backend.")
(license license:gpl3+)))
|