linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-m17n.nix
blob9e367d70799a29a52438249bc45daefbd57d0a80
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , extra-cmake-modules
6 , pkg-config
7 , fcitx5
8 , m17n_lib
9 , m17n_db
10 , gettext
11 , fmt
14 stdenv.mkDerivation rec {
15   pname = "fcitx5-m17n";
16   version = "5.0.4";
18   src = fetchFromGitHub {
19     owner = "fcitx";
20     repo = pname;
21     rev = version;
22     sha256 = "sha256-yI6Svr1KEdHqAX3qd7t7GvD0EcWg0A2vZpuJw1U9oKQ=";
23   };
25   nativeBuildInputs = [
26     cmake
27     extra-cmake-modules
28     pkg-config
29     gettext
30   ];
32   buildInputs = [
33     fcitx5
34     m17n_db
35     m17n_lib
36     fmt
37   ];
39   meta = with lib; {
40     description = "m17n support for Fcitx5";
41     homepage = "https://github.com/fcitx/fcitx5-m17n";
42     license = licenses.lgpl21Plus;
43     maintainers = with maintainers; [ Technical27 ];
44     platforms = platforms.linux;
45   };