16 stdenv.mkDerivation rec {
20 src = fetchFromGitHub {
24 hash = "sha256-wv5vX9eFlBUY7x4v9U+OuhKgX6V/b3iTaCvAIwJO10o=";
37 ] ++ lib.optionals enableQt [
43 (lib.cmakeBool "ENABLE_QT" enableQt)
44 (lib.cmakeBool "USE_QT6" (lib.versions.major qtbase.version == "6"))
45 "-DSKK_DEFAULT_PATH=${skkDictionaries.l}/share/skk/SKK-JISYO.L"
48 dontWrapQtApps = true;
51 description = "Input method engine for Fcitx5, which uses libskk as its backend";
52 homepage = "https://github.com/fcitx/fcitx5-skk";
53 license = licenses.gpl3Plus;
54 maintainers = with maintainers; [ milran ];
55 platforms = platforms.linux;