mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add fcitx5-qt.
* gnu/packages/fcitx5.scm (fcitx5-qt): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
69d3419ca3
commit
4394d3721a
1 changed files with 36 additions and 0 deletions
|
@ -37,6 +37,7 @@ (define-module (gnu packages fcitx5)
|
|||
#: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 unicode)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
|
@ -206,3 +207,38 @@ (define-public libime
|
|||
(description "Libime is a library for implmenting various input methods
|
||||
editors.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public fcitx5-qt
|
||||
(package
|
||||
(name "fcitx5-qt")
|
||||
(version "5.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://download.fcitx-im.org/fcitx5"
|
||||
"/fcitx5-qt/fcitx5-qt-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0ilhb4yw9k3m1c4fidnv3nd5dgm9xxds11dgdys6gswjjnmcgqqm"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append "-DCMAKE_INSTALL_QT5PLUGINDIR="
|
||||
%output "/lib/qt5/plugins")
|
||||
"-DENABLE_QT4=Off")))
|
||||
(inputs
|
||||
`(("fcitx5" ,fcitx5)
|
||||
("libxcb" ,libxcb)
|
||||
("libxkbcommon" ,libxkbcommon)
|
||||
("qtbase" ,qtbase)
|
||||
("gettext" ,gettext-minimal)))
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
||||
(home-page "https://github.com/fcitx/fcitx5-qt")
|
||||
(synopsis "Qt library and IM module for Fcitx 5")
|
||||
(description "Fcitx5-qt provides Qt library for development and IM module
|
||||
for Qt based application.")
|
||||
(license (list license:lgpl2.1+
|
||||
;; Files under qt4(Fcitx5Qt4DBusAddons), qt5/dbusaddons
|
||||
;; and qt5/platforminputcontext.
|
||||
license:bsd-3))))
|
||||
|
|
Loading…
Reference in a new issue