linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-table-extra.nix
blob355ac97d8a1535c5bf4e49e36f58619be8824520
1 { lib, stdenv
2 , fetchFromGitHub
3 , cmake
4 , extra-cmake-modules
5 , gettext
6 , libime
7 , boost
8 , fcitx5
9 }:
11 stdenv.mkDerivation rec {
12   pname = "fcitx5-table-extra";
13   version = "5.0.2";
15   src = fetchFromGitHub {
16     owner = "fcitx";
17     repo = "fcitx5-table-extra";
18     rev = version;
19     sha256 = "sha256-Bqxdi/rjiTKqHLvVFVcQMjz/I0xxTiBgUIRkZjLuK+M=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25     gettext
26     libime
27     boost
28     fcitx5
29   ];
31   meta = with lib; {
32     description = "Extra table for Fcitx, including Boshiamy, Zhengma, Cangjie, and Quick";
33     homepage = "https://github.com/fcitx/fcitx5-table-extra";
34     license = licenses.gpl2Only;
35     maintainers = with maintainers; [ poscat ];
36     platforms = platforms.linux;
37   };