Use fcitx5-anthy
This commit is contained in:
parent
28dd3810dc
commit
c614860e56
2 changed files with 27 additions and 1 deletions
26
fcitx5-anthy.nix
Normal file
26
fcitx5-anthy.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib, stdenv, fetchurl, cmake, extra-cmake-modules, pkg-config, fcitx5, anthy, gettext }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "fcitx5-anthy";
|
||||||
|
version = "5.0.13";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.xz";
|
||||||
|
sha256 = "EGpyYiNalm4En3Oa++hyOSPLhjbkVcDyZt3LqamfSOI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
|
||||||
|
buildInputs = [ fcitx5 anthy gettext ];
|
||||||
|
|
||||||
|
preinstall = ''
|
||||||
|
substituteInPlace src/cmake_install.cmake \
|
||||||
|
--replace ${fcitx5} $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Anthy Wrapper for Fcitx5";
|
||||||
|
homepage = "https://github.com/fcitx/fcitx5-anthy";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -18,7 +18,7 @@ in
|
||||||
{
|
{
|
||||||
i18n.inputMethod = {
|
i18n.inputMethod = {
|
||||||
enabled = "fcitx5";
|
enabled = "fcitx5";
|
||||||
fcitx5.addons = with pkgs.fcitx-engines; [ anthy ];
|
fcitx5.addons = [ (pkgs.callPackage ./fcitx5-anthy.nix {}) ];
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue