3
0
Fork 0
forked from mirrors/nixpkgs

fcitx-hangul: init at 0.3.0

This commit is contained in:
Eric Sagnes 2015-11-25 15:34:54 +09:00
parent 3068f632c7
commit 1e5cd17f12
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, cmake, fcitx, libhangul, gettext, pkgconfig }:
stdenv.mkDerivation rec {
name = "fcitx-hangul-${version}";
version = "0.3.0";
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-hangul/${name}.tar.xz";
sha256 = "1jq78nczliw6pnhfac8hspffybrry6syk17y0wwcq05j3r3nd2lp";
};
buildInputs = [ cmake fcitx libhangul gettext pkgconfig ];
preInstall = ''
substituteInPlace src/cmake_install.cmake \
--replace ${fcitx} $out
substituteInPlace data/cmake_install.cmake \
--replace ${fcitx} $out
'';
meta = with stdenv.lib; {
homepage = "https://github.com/fcitx/fcitx-hangul";
downloadPage = "http://download.fcitx-im.org/fcitx-hangul/";
description = "Fcitx Wrapper for hangul";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
};
}

View file

@ -1515,6 +1515,8 @@ let
fcitx-chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { };
fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { };
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix {