fcitx5-skk,fcitx5-skk-qt: init at 5.0.15

fcitx5-skk is an input method engine for Fcitx5, which uses libskk as its backend.
https://github.com/fcitx/fcitx5-skk
This commit is contained in:
milran 2023-03-17 23:26:12 +09:00
parent 88c6ed1f07
commit 82247b0793
No known key found for this signature in database
GPG key ID: F62FA9DCC81974EA
3 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, cmake
, extra-cmake-modules
, gettext
, fcitx5
, fcitx5-qt
, libskk
, qtbase
, skk-dicts
, wrapQtAppsHook
, enableQt ? false
}:
stdenv.mkDerivation rec {
pname = "fcitx5-skk";
version = "5.0.15";
src = fetchFromGitHub {
owner = "fcitx";
repo = pname;
rev = version;
sha256 = "sha256-y5GciWJMEFQM8SsqYANXe/SdVq6GEqsfF1yrKKhw0KA=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
gettext
pkg-config
] ++ lib.optional enableQt wrapQtAppsHook;
buildInputs = [
fcitx5
libskk
] ++ lib.optionals enableQt [
fcitx5-qt
qtbase
];
cmakeFlags = [
"-DENABLE_QT=${toString enableQt}"
"-DSKK_DEFAULT_PATH=${skk-dicts}/share/SKK-JISYO.L"
];
meta = with lib; {
description = "Input method engine for Fcitx5, which uses libskk as its backend";
homepage = "https://github.com/fcitx/fcitx5-skk";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ milran ];
platforms = platforms.linux;
};
}

View file

@ -21,6 +21,7 @@ REPOS = [
"fcitx5-m17n",
"fcitx5-qt",
"fcitx5-rime",
"fcitx5-skk",
"fcitx5-table-extra",
"fcitx5-table-other",
"fcitx5-unikey"

View file

@ -7316,6 +7316,12 @@ with pkgs;
};
};
fcitx5-skk = libsForQt5.callPackage ../tools/inputmethods/fcitx5/fcitx5-skk.nix { };
fcitx5-skk-qt = fcitx5-skk.override {
enableQt = true;
};
fcitx5-unikey = libsForQt5.callPackage ../tools/inputmethods/fcitx5/fcitx5-unikey.nix { };
fcitx5-configtool = libsForQt5.callPackage ../tools/inputmethods/fcitx5/fcitx5-configtool.nix { };