linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-table-other.nix
blob5e42016ec7c496f19c1be93c7841a83a04e7419c
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-other";
13   version = "5.0.3";
15   src = fetchFromGitHub {
16     owner = "fcitx";
17     repo = "fcitx5-table-other";
18     rev = version;
19     sha256 = "sha256-jJTFAOrBeRBoUn0mqqkX0z1zQnDOh7otMHDPmjuZbWw=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25     gettext
26     libime
27     boost
28     fcitx5
29   ];
31   meta = with lib; {
32     description = "Some other tables for Fcitx";
33     homepage = "https://github.com/fcitx/fcitx5-table-other";
34     license = licenses.gpl3Only;
35     maintainers = with maintainers; [ poscat ];
36     platforms = platforms.linux;
37   };