Merge pull request #41568 from linc01n/fcitx-table-extra
fcitx-table-extra: init at 0.3.8
This commit is contained in:
commit
6dcef7ab46
3 changed files with 36 additions and 0 deletions
|
@ -2176,6 +2176,11 @@
|
||||||
github = "limeytexan";
|
github = "limeytexan";
|
||||||
name = "Michael Brantley";
|
name = "Michael Brantley";
|
||||||
};
|
};
|
||||||
|
linc01n = {
|
||||||
|
email = "git@lincoln.hk";
|
||||||
|
github = "linc01n";
|
||||||
|
name = "Lincoln Lee";
|
||||||
|
};
|
||||||
linquize = {
|
linquize = {
|
||||||
email = "linquize@yahoo.com.hk";
|
email = "linquize@yahoo.com.hk";
|
||||||
github = "linquize";
|
github = "linquize";
|
||||||
|
|
|
@ -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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -2315,6 +2315,8 @@ with pkgs;
|
||||||
protobuf = pkgs.protobuf.overrideDerivation (oldAttrs: { stdenv = clangStdenv; });
|
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 { };
|
table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { };
|
||||||
|
|
||||||
cloudpinyin = callPackage ../tools/inputmethods/fcitx-engines/fcitx-cloudpinyin { };
|
cloudpinyin = callPackage ../tools/inputmethods/fcitx-engines/fcitx-cloudpinyin { };
|
||||||
|
|
Loading…
Reference in a new issue