ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-table-extra.nix
blob467321147145448be412bb6866c5b473231cadd6
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   extra-cmake-modules,
7   gettext,
8   libime,
9   boost,
10   fcitx5,
13 stdenv.mkDerivation rec {
14   pname = "fcitx5-table-extra";
15   version = "5.1.6";
17   src = fetchFromGitHub {
18     owner = "fcitx";
19     repo = pname;
20     rev = version;
21     hash = "sha256-no8TDbK88SnuLAz72QK2q2XM5bLdkGd8lkWFwreajO8=";
22   };
24   nativeBuildInputs = [
25     cmake
26     extra-cmake-modules
27     gettext
28     libime
29     boost
30     fcitx5
31   ];
33   meta = with lib; {
34     description = "Extra table for Fcitx, including Boshiamy, Zhengma, Cangjie, and Quick";
35     homepage = "https://github.com/fcitx/fcitx5-table-extra";
36     license = licenses.gpl2Only;
37     maintainers = with maintainers; [ poscat ];
38     platforms = platforms.linux;
39   };