summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorlaMudri <lamudri@gmail.com>2015-06-22 15:24:27 +0100
committerRok Garbas <rok@garbas.si>2015-06-22 18:25:45 +0200
commit22172b8e43dfac3486d108a085b5911d7e2d8c5a (patch)
tree9eef07764e75c11fbeafe4c4fa71962f4c8ab25d /pkgs/tools/inputmethods
parentf0b40653924b114b169b89531a6043068747c1f0 (diff)
downloadnixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.tar
nixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.tar.gz
nixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.tar.bz2
nixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.tar.lz
nixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.tar.xz
nixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.tar.zst
nixpkgs-22172b8e43dfac3486d108a085b5911d7e2d8c5a.zip
ibus-table-others: init at 1.3.7, closes #8460
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/ibus-table-others/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/ibus-table-others/default.nix b/pkgs/tools/inputmethods/ibus-table-others/default.nix
new file mode 100644
index 00000000000..f356bcdee85
--- /dev/null
+++ b/pkgs/tools/inputmethods/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 ];
+  };
+}