2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, fcitx, gettext, libchewing, pkg-config }:
|
2015-11-25 06:31:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fcitx-chewing";
|
2018-07-13 22:52:10 +01:00
|
|
|
version = "0.2.3";
|
2015-11-25 06:31:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://download.fcitx-im.org/fcitx-chewing/${pname}-${version}.tar.xz";
|
2018-07-13 22:52:10 +01:00
|
|
|
sha256 = "1w5smp5zvjx681cp1znjypyr9sw5x6v0wnsk8a7ncwxi9q9wf4xk";
|
2015-11-25 06:31:28 +00:00
|
|
|
};
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ fcitx gettext libchewing ];
|
2015-11-25 06:31:28 +00:00
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace src/cmake_install.cmake \
|
|
|
|
--replace ${fcitx} $out
|
|
|
|
substituteInPlace data/cmake_install.cmake \
|
|
|
|
--replace ${fcitx} $out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-11-25 07:29:50 +00:00
|
|
|
isFcitxEngine = true;
|
|
|
|
homepage = "https://github.com/fcitx/fcitx-chewing";
|
|
|
|
downloadPage = "http://download.fcitx-im.org/fcitx-chewing/";
|
|
|
|
description = "Fcitx engine for chewing";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ ericsagnes ];
|
2015-11-25 06:31:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|