3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix

30 lines
885 B
Nix
Raw Normal View History

2016-05-21 19:54:15 +01:00
{ stdenv, fetchurl, cmake, pkgconfig, fcitx, gettext, curl }:
stdenv.mkDerivation rec {
name = "fcitx-cloudpinyin-${version}";
version = "0.3.6";
2016-05-21 19:54:15 +01:00
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-cloudpinyin/${name}.tar.xz";
sha256 = "1f3ryx817bxb8g942l50ng4xg0gp50rb7pv2p6zf98r2z804dcvf";
2016-05-21 19:54:15 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake fcitx gettext curl ];
2016-05-21 19:54:15 +01:00
preInstall = ''
substituteInPlace src/cmake_install.cmake \
--replace ${fcitx} $out
substituteInPlace po/cmake_install.cmake \
--replace ${fcitx} $out
'';
meta = with stdenv.lib; {
isFcitxEngine = true;
description = "A standalone module for fcitx that uses web API to provide better pinyin result";
homepage = https://github.com/fcitx/fcitx-cloudpinyin;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}