summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorPoscat <poscat@mail.poscat.moe>2020-12-13 11:06:44 +0800
committerPoscat <poscat@mail.poscat.moe>2021-01-10 13:24:20 +0800
commit85a30b1fd8b86ce96fe6df2773ff782b79290917 (patch)
tree209d6374cbf7be789c7afbb01840fed893f9c672 /pkgs/tools/inputmethods
parentf67f57e0f14f42bdc3d79630010823269a0086f6 (diff)
fcitx5: Init at 5.0.3
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx5/default.nix100
1 files changed, 100 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/fcitx5/default.nix b/pkgs/tools/inputmethods/fcitx5/default.nix
new file mode 100644
index 000000000000..5fa85064fa3f
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx5/default.nix
@@ -0,0 +1,100 @@
+{ stdenv
+, fetchurl
+, fetchFromGitHub
+, pkg-config
+, cmake
+, extra-cmake-modules
+, cairo
+, cldr-emoji-annotation
+, pango
+, fribidi
+, fmt
+, wayland
+, systemd
+, wayland-protocols
+, json_c
+, isocodes
+, xkeyboard_config
+, enchant
+, gdk-pixbuf
+, libGL
+, libevent
+, libuuid
+, libselinux
+, libXdmcp
+, libsepol
+, libxkbcommon
+, libthai
+, libdatrie
+, xcbutilkeysyms
+, pcre
+, xcbutilwm
+, xcb-imdkit
+, libxkbfile
+}:
+let
+ enDictVer = "20121020";
+ enDict = fetchurl {
+ url = "https://download.fcitx-im.org/data/en_dict-${enDictVer}.tar.gz";
+ sha256 = "1svcb97sq7nrywp5f2ws57cqvlic8j6p811d9ngflplj8xw5sjn4";
+ };
+in
+stdenv.mkDerivation rec {
+ pname = "fcitx5";
+ version = "5.0.3";
+
+ src = fetchFromGitHub {
+ owner = "fcitx";
+ repo = "fcitx5";
+ rev = version;
+ sha256 = "QYMH0WbhHqDKUvpj1VOB8U5sbBD89H6moLFkQBJijZA=";
+ };
+
+ prePatch = ''
+ ln -s ${enDict} src/modules/spell/dict/$(stripHash ${enDict})
+ '';
+
+ nativeBuildInputs = [
+ cmake
+ extra-cmake-modules
+ pkg-config
+ ];
+
+ buildInputs = [
+ fmt
+ isocodes
+ cairo
+ enchant
+ pango
+ libthai
+ libdatrie
+ fribidi
+ systemd
+ gdk-pixbuf
+ wayland
+ wayland-protocols
+ cldr-emoji-annotation
+ json_c
+ libGL
+ libevent
+ libuuid
+ libselinux
+ libsepol
+ libXdmcp
+ libxkbcommon
+ pcre
+ xcbutilwm
+ xcbutilkeysyms
+ xcb-imdkit
+ xkeyboard_config
+ libxkbfile
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Next generation of fcitx";
+ homepage = "https://github.com/fcitx/fcitx5";
+ license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ poscat ];
+ platforms = platforms.linux;
+ };
+}