aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix b/nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
new file mode 100644
index 00000000000..b34206e6cf6
--- /dev/null
+++ b/nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
@@ -0,0 +1,55 @@
+{ stdenv
+, fetchFromGitHub
+, gettext
+, xorg
+, pkgconfig
+, wrapGAppsHook
+, ibus
+, gtk3
+, go
+}:
+
+stdenv.mkDerivation rec {
+ pname = "ibus-bamboo";
+ version = "0.6.6";
+
+ src = fetchFromGitHub {
+ owner = "BambooEngine";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0bjcc2dm6c6s0v271nyslmwf5z0xxpcbvmk4lyirs48hc1bzv3n6";
+ };
+
+ nativeBuildInputs = [
+ gettext
+ pkgconfig
+ wrapGAppsHook
+ go
+ ];
+
+ buildInputs = [
+ xorg.libX11
+ xorg.xorgproto
+ xorg.libXtst
+ xorg.libXi
+ ];
+
+ preConfigure = ''
+ export GOCACHE="$TMPDIR/go-cache"
+ sed -i "s,/usr,$out," bamboo.xml
+ '';
+
+ makeFlags = [
+ "PREFIX=${placeholder "out"}"
+ ];
+
+
+ meta = with stdenv.lib; {
+ isIbusEngine = true;
+ description = "A Vietnamese IME for IBus";
+ homepage = "https://github.com/BambooEngine/ibus-bamboo";
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ superbo ];
+ };
+}