summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorPoscat <poscat@mail.poscat.moe>2020-12-13 11:16:03 +0800
committerPoscat <poscat@mail.poscat.moe>2021-01-10 14:31:03 +0800
commitea503004994399098189d5b7662fbf61def8ab6f (patch)
treec6160019f53e54f3298f0fd7fa3e27216ef0109f /pkgs/tools/inputmethods
parent1da3fbf0ebb0ec4ecd2fd1d20ba789f303758ab4 (diff)
fcitx5-rime: Init at 5.0.2
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix
new file mode 100644
index 000000000000..9992e1987589
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix
@@ -0,0 +1,47 @@
+{ stdenv
+, fetchurl
+, fetchFromGitHub
+, pkgconfig
+, cmake
+, extra-cmake-modules
+, gettext
+, fcitx5
+, librime
+, brise
+}:
+
+stdenv.mkDerivation rec {
+ pname = "fcitx5-rime";
+ version = "5.0.2";
+
+ src = fetchFromGitHub {
+ owner = "fcitx";
+ repo = "fcitx5-rime";
+ rev = version;
+ sha256 = "cVCTsD1Iw6OtyYFpxff3ix2CubRTnDaBevAYA4I9Ai8=";
+ };
+
+ cmakeFlags = [
+ "-DRIME_DATA_DIR=${brise}/share/rime-data"
+ ];
+
+ nativeBuildInputs = [
+ cmake
+ extra-cmake-modules
+ pkgconfig
+ gettext
+ ];
+
+ buildInputs = [
+ fcitx5
+ librime
+ ];
+
+ meta = with stdenv.lib; {
+ description = "RIME support for Fcitx5";
+ homepage = "https://github.com/fcitx/fcitx5-rime";
+ license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ poscat ];
+ platforms = platforms.linux;
+ };
+}