nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix

32 lines
949 B
Nix
Raw Normal View History

2015-11-25 07:34:54 +01:00
{ 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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake fcitx libhangul gettext ];
2015-11-25 07:34:54 +01:00
preInstall = ''
substituteInPlace src/cmake_install.cmake \
--replace ${fcitx} $out
substituteInPlace data/cmake_install.cmake \
--replace ${fcitx} $out
'';
meta = with stdenv.lib; {
2015-11-25 08:29:50 +01:00
isFcitxEngine = true;
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 ];
2015-11-25 07:34:54 +01:00
};
}