2020-12-07 09:29:58 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com>
|
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages fcitx5)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system cmake)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2020-12-07 09:40:41 -05:00
|
|
|
#:use-module (gnu packages boost)
|
2020-12-07 09:29:58 -05:00
|
|
|
#:use-module (gnu packages datastructures)
|
2020-12-07 09:38:35 -05:00
|
|
|
#:use-module (gnu packages enchant)
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2020-12-07 09:40:41 -05:00
|
|
|
#:use-module (gnu packages gcc)
|
2020-12-07 09:38:35 -05:00
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages iso-codes)
|
2020-12-07 09:29:58 -05:00
|
|
|
#:use-module (gnu packages kde-frameworks)
|
2020-12-07 09:38:35 -05:00
|
|
|
#:use-module (gnu packages libevent)
|
|
|
|
#:use-module (gnu packages linux)
|
2020-12-07 09:39:29 -05:00
|
|
|
#:use-module (gnu packages lua)
|
2020-12-07 09:29:58 -05:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2020-12-07 09:38:35 -05:00
|
|
|
#:use-module (gnu packages pretty-print)
|
2020-12-07 09:40:41 -05:00
|
|
|
#:use-module (gnu packages python)
|
2020-12-07 09:38:35 -05:00
|
|
|
#:use-module (gnu packages unicode)
|
|
|
|
#:use-module (gnu packages web)
|
|
|
|
#:use-module (gnu packages xdisorg)
|
|
|
|
#:use-module (gnu packages xml)
|
2020-12-07 09:29:58 -05:00
|
|
|
#:use-module (gnu packages xorg))
|
|
|
|
|
|
|
|
(define-public xcb-imdkit
|
|
|
|
(package
|
|
|
|
(name "xcb-imdkit")
|
|
|
|
(version "1.0.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://download.fcitx-im.org/fcitx5/xcb-imdkit/xcb-imdkit-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "1qgbbp8y8ci7haz99vgbrgpjsbrwwyjianyhdvxcirnbm5bybvmz"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Remove bundled uthash.
|
|
|
|
(delete-file-recursively "uthash")
|
|
|
|
#t))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("uthash" ,uthash)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("xcb-util" ,xcb-util)
|
|
|
|
("xcb-util-keysyms" ,xcb-util-keysyms)))
|
|
|
|
(native-inputs
|
|
|
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "https://github.com/fcitx/xcb-imdkit")
|
|
|
|
(synopsis "Input method development support for XCB")
|
|
|
|
(description "Xcb-imdkit is an implementation of xim protocol in XCB,
|
|
|
|
comparing with the implementation of IMDkit with Xlib, and xim inside Xlib, it
|
|
|
|
has less memory foot print, better performance, and safer on malformed
|
|
|
|
client.")
|
|
|
|
(license license:lgpl2.1)))
|
2020-12-07 09:38:35 -05:00
|
|
|
|
|
|
|
(define-public fcitx5
|
|
|
|
(package
|
|
|
|
(name "fcitx5")
|
|
|
|
(version "5.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-"
|
|
|
|
version "_dict.tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "06zkb33m2rnhg385iy79n3r4svz5jbav74di61xqa3lhbv7534s3"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "-DCLDR_DIR="
|
|
|
|
(assoc-ref %build-inputs "unicode-cldr-common")
|
|
|
|
"/share/unicode/cldr"))))
|
|
|
|
(inputs
|
|
|
|
`(("cairo" ,cairo)
|
|
|
|
("cairo-xcb" ,cairo-xcb)
|
|
|
|
("dbus" ,dbus)
|
|
|
|
("enchant" ,enchant)
|
|
|
|
("expat" ,expat)
|
|
|
|
("fmt" ,fmt)
|
|
|
|
("gdk-pixbuf" ,gdk-pixbuf)
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
("glib" ,glib)
|
|
|
|
("iso-codes" ,iso-codes)
|
|
|
|
("json-c" ,json-c)
|
|
|
|
("libevent" ,libevent)
|
|
|
|
("libpthread-stubs" ,libpthread-stubs)
|
|
|
|
("libuuid" ,util-linux "lib")
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("libxfixes" ,libxfixes)
|
|
|
|
("libxinerama" ,libxinerama)
|
|
|
|
("libxkbcommon" ,libxkbcommon)
|
|
|
|
("libxkbfile" ,libxkbfile)
|
|
|
|
("pango" ,pango)
|
|
|
|
("unicode-cldr-common" ,unicode-cldr-common)
|
|
|
|
("wayland" ,wayland)
|
|
|
|
("wayland-protocols" ,wayland-protocols)
|
|
|
|
("xcb-imdkit" ,xcb-imdkit)
|
|
|
|
("xcb-util" ,xcb-util)
|
|
|
|
("xcb-util-keysyms" ,xcb-util-keysyms)
|
|
|
|
("xcb-util-wm" ,xcb-util-wm)
|
|
|
|
("xkeyboard-config" ,xkeyboard-config)))
|
|
|
|
(native-inputs
|
|
|
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "FCITX_ADDON_DIRS")
|
|
|
|
(files '("lib/fcitx5")))))
|
|
|
|
(home-page "https://github.com/fcitx/fcitx5")
|
|
|
|
(synopsis "Input method framework")
|
|
|
|
(description "Fcitx 5 is a generic input method framework.")
|
|
|
|
(license license:lgpl2.1+)))
|
2020-12-07 09:39:29 -05:00
|
|
|
|
|
|
|
(define-public fcitx5-lua
|
|
|
|
(package
|
|
|
|
(name "fcitx5-lua")
|
|
|
|
(version "5.0.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://download.fcitx-im.org/fcitx5/fcitx5-lua/fcitx5-lua-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "177mj56j8yrl79hvk7bbrifvm137np23pwalv83ibgk4l51z92hf"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list
|
|
|
|
(string-append "-DFEM_INCLUDE_INSTALL_DIR=" %output "/include")
|
|
|
|
(string-append "-DFEM_LIB_INSTALL_DIR=" %output "/lib"))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'patch-install-prefix
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(for-each
|
|
|
|
(lambda (x)
|
|
|
|
(format #t "patch-install-prefix: Fixing install prefix in ~a~%"
|
|
|
|
x)
|
|
|
|
(substitute* x
|
|
|
|
(("\\$\\{FCITX_INSTALL_PKGDATADIR\\}")
|
|
|
|
(string-append (assoc-ref outputs "out")
|
|
|
|
"/share/fcitx5"))))
|
|
|
|
'("src/addonloader/CMakeLists.txt"
|
|
|
|
"src/imeapi/CMakeLists.txt")))))))
|
|
|
|
(inputs
|
|
|
|
`(("fcitx5" ,fcitx5)
|
|
|
|
("lua" ,lua)
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
("libpthread-stubs" ,libpthread-stubs)))
|
|
|
|
(native-inputs
|
|
|
|
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
|
|
|
(home-page "https://github.com/fcitx/fcitx5-lua")
|
|
|
|
(synopsis "Lua support for Fcitx 5")
|
|
|
|
(description "Fcitx5-lua allows writing Fcitx5 extension in Lua.")
|
|
|
|
(license license:lgpl2.1+)))
|
2020-12-07 09:40:41 -05:00
|
|
|
|
|
|
|
(define-public libime
|
|
|
|
(package
|
|
|
|
(name "libime")
|
|
|
|
(version "1.0.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://download.fcitx-im.org/fcitx5/libime/libime-"
|
|
|
|
version "_dict.tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "006pncby7p6h3rnicckzjwi6jzsrqiqbj6p9bpic80lanlllgw31"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("fcitx5" ,fcitx5)
|
|
|
|
("boost" ,boost)))
|
|
|
|
(native-inputs
|
|
|
|
`(("gcc" ,gcc-9) ;for #include <filesystem> and ld support
|
|
|
|
("extra-cmake-modules" ,extra-cmake-modules)
|
|
|
|
("python" ,python))) ;needed to run test
|
|
|
|
(home-page "https://github.com/fcitx/libime")
|
|
|
|
(synopsis "Library for implementing generic input method")
|
|
|
|
(description "Libime is a library for implmenting various input methods
|
|
|
|
editors.")
|
|
|
|
(license license:lgpl2.1+)))
|