fcitx-table-other: init at 0.2.3

+30
+28
pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix
··· 1 + { stdenv, fetchurl, cmake, fcitx, gettext }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "fcitx-table-other-${version}"; 5 + version = "0.2.3"; 6 + 7 + src = fetchurl { 8 + url = "http://download.fcitx-im.org/fcitx-table-other/${name}.tar.xz"; 9 + sha256 = "12fqbsjrpx5pndx2jf7fksrlp01a4yxz62h2vpxrbkpk73ljly4v"; 10 + }; 11 + 12 + buildInputs = [ cmake fcitx gettext ]; 13 + 14 + preInstall = '' 15 + substituteInPlace tables/cmake_install.cmake \ 16 + --replace ${fcitx} $out 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + homepage = "https://github.com/fcitx/fcitx-table-other"; 21 + downloadPage = "http://download.fcitx-im.org/fcitx-table-other/"; 22 + description = "Provides some other tables for Fcitx"; 23 + license = licenses.gpl3Plus; 24 + platforms = platforms.linux; 25 + maintainers = with maintainers; [ ericsagnes ]; 26 + }; 27 + 28 + }
+2
pkgs/top-level/all-packages.nix
··· 1517 1517 1518 1518 fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; 1519 1519 1520 + fcitx-table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { }; 1521 + 1520 1522 fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; 1521 1523 1522 1524 fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix {