summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/ibus-engines/ibus-table-others
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-02-10 11:41:51 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-02-17 20:44:29 +0900
commit3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b (patch)
tree70f42259975a979b2da6be8694b1a79a26be1fc1 /pkgs/tools/inputmethods/ibus-engines/ibus-table-others
parent295d67002432bc719af447a054add3292eefafed (diff)
downloadnixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.tar
nixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.tar.gz
nixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.tar.bz2
nixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.tar.lz
nixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.tar.xz
nixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.tar.zst
nixpkgs-3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b.zip
ibus: group engines
Diffstat (limited to 'pkgs/tools/inputmethods/ibus-engines/ibus-table-others')
-rw-r--r--pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix
new file mode 100644
index 00000000000..f356bcdee85
--- /dev/null
+++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, ibus, ibus-table, pkgconfig, python3 }:
+
+stdenv.mkDerivation rec {
+  name = "ibus-table-others-${version}";
+  version = "1.3.7";
+
+  src = fetchurl {
+    url = "https://github.com/moebiuscurve/ibus-table-others/releases/download/${version}/${name}.tar.gz";
+    sha256 = "0vmz82il796062jbla5pawsr5dqyhs7ald7xjp84zfccc09dg9kx";
+  };
+
+  buildInputs = [ ibus ibus-table pkgconfig python3 ];
+
+  preBuild = ''
+    export HOME=/tmp/ibus-table-others
+  '';
+
+  postFixup = ''
+    rm -rf /tmp/ibus-table-others
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Various table-based input methods for IBus";
+    homepage    = https://github.com/moebiuscurve/ibus-table-others;
+    license     = licenses.gpl3;
+    platforms   = platforms.linux;
+    maintainers = with maintainers; [ mudri ];
+  };
+}