fcitx-hangul: init at 0.3.0

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