;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Zhu Zihao ;;; ;;; 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 . (define-module (gnu packages fcitx5) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system copy) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (gnu packages boost) #:use-module (gnu packages curl) #:use-module (gnu packages datastructures) #:use-module (gnu packages enchant) #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages gcc) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages iso-codes) #:use-module (gnu packages kde-frameworks) #:use-module (gnu packages libevent) #:use-module (gnu packages linux) #:use-module (gnu packages lua) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pretty-print) #:use-module (gnu packages python) #:use-module (gnu packages qt) #:use-module (gnu packages textutils) #:use-module (gnu packages unicode) #:use-module (gnu packages web) #:use-module (gnu packages xdisorg) #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) (define-public xcb-imdkit (package (name "xcb-imdkit") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://download.fcitx-im.org/fcitx5/xcb-imdkit/xcb-imdkit-" version ".tar.xz")) (sha256 (base32 "0qgbklk5a809asyaxi6v9iasxc19g16fc5rphnamhwrliczlycas")) (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))) (define-public fcitx5 (package (name "fcitx5") (version "5.0.1") (source (origin (method url-fetch) (uri (string-append "https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-" version "_dict.tar.xz")) (sha256 (base32 "0ai7qkxvkdl5qmrvkjp53w1809hhla9csf04qsnf8k33pqbzdgw8")) ;; This backport patch allow us to use CLDR data in unicode-cldr-common. ;; it should be removed after upstream make a newer release. (patches (search-patches "fcitx5-allow-set-cldr-dir.patch")))) (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 "Next generation of Fcitx") (description "Fcitx 5 is a generic input method framework, the successor of Fcitx.") (license license:lgpl2.1+)))