summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authormingchuan <ming@culpring.com>2017-09-16 13:02:10 +0800
committerOrivej Desh <orivej@gmx.fr>2017-10-03 14:27:10 +0000
commit53c8e23591acc2f43d1f1be35ef2715e8badde75 (patch)
tree38d02fd5e532b7a94beb4903de49511caa5598af /pkgs/tools/inputmethods
parent906f73fd0be0df568f86be7c562395ec59ad718b (diff)
downloadnixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.tar
nixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.tar.gz
nixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.tar.bz2
nixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.tar.lz
nixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.tar.xz
nixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.tar.zst
nixlib-53c8e23591acc2f43d1f1be35ef2715e8badde75.zip
fcitx-engines.rime: init at 0.3.2
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix
new file mode 100644
index 000000000000..96e575d05bfc
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, cmake, pkgconfig, fcitx, librime, brise, hicolor_icon_theme }:
+
+stdenv.mkDerivation rec {
+  name = "fcitx-rime-${version}";
+  version = "0.3.2";
+
+  src = fetchurl {
+    url = "https://download.fcitx-im.org/fcitx-rime/${name}.tar.xz";
+    sha256 = "0bd8snfa6jr8dhnm0s0z021iryh5pbaf7p15rhkgbigw2pssczpr";
+  };
+
+  buildInputs = [ cmake pkgconfig fcitx librime brise hicolor_icon_theme ];
+
+  # cmake cannont automatically find our nonstandard brise install location
+  cmakeFlags = [ "-DRIME_DATA_DIR=${brise}/share/rime-data" ];
+
+  preInstall = ''
+    substituteInPlace src/cmake_install.cmake \
+       --replace ${fcitx} $out
+    substituteInPlace data/cmake_install.cmake \
+       --replace ${fcitx} $out
+  '';
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    isFcitxEngine = true;
+    homepage      = https://github.com/fcitx/fcitx-rime;
+    downloadPage  = https://download.fcitx-im.org/fcitx-rime/;
+    description   = "Rime support for Fcitx";
+    license       = licenses.gpl2;
+    platforms     = platforms.linux;
+    maintainers   = with maintainers; [ mingchuan ];
+  };
+}