Merge pull request #41568 from linc01n/fcitx-table-extra

fcitx-table-extra: init at 0.3.8
This commit is contained in:
Matthew Justin Bauer 2018-06-06 21:27:34 -04:00 committed by GitHub
commit 6dcef7ab46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View file

@ -2176,6 +2176,11 @@
github = "limeytexan";
name = "Michael Brantley";
};
linc01n = {
email = "git@lincoln.hk";
github = "linc01n";
name = "Lincoln Lee";
};
linquize = {
email = "linquize@yahoo.com.hk";
github = "linquize";

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, cmake, fcitx, gettext }:
stdenv.mkDerivation rec {
name = "fcitx-table-extra-${version}";
version = "0.3.8";
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-table-extra/${name}.tar.xz";
sha256 = "c91bb19c1a7b53c5339bf2f75ae83839020d337990f237a8b9bc0f4416c120ef";
};
buildInputs = [ cmake fcitx gettext ];
preInstall = ''
substituteInPlace tables/cmake_install.cmake \
--replace ${fcitx} $out
'';
meta = with stdenv.lib; {
isFcitxEngine = true;
homepage = "https://github.com/fcitx/fcitx-table-extra";
downloadPage = "http://download.fcitx-im.org/fcitx-table-extra/";
description = "Provides extra table for Fcitx, including Boshiamy, Zhengma, Cangjie, and Quick";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ linc01n ];
};
}

View file

@ -2315,6 +2315,8 @@ with pkgs;
protobuf = pkgs.protobuf.overrideDerivation (oldAttrs: { stdenv = clangStdenv; });
};
table-extra = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-extra { };
table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { };
cloudpinyin = callPackage ../tools/inputmethods/fcitx-engines/fcitx-cloudpinyin { };