biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-chewing.nix
blob550efad6264ed946a1357b512b2ceb54339bb557
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , extra-cmake-modules
6 , gettext
7 , fcitx5
8 , libchewing
9 }:
11 stdenv.mkDerivation rec {
12   pname = "fcitx5-chewing";
13   version = "5.1.6";
15   src = fetchFromGitHub {
16     owner = "fcitx";
17     repo = pname;
18     rev = version;
19     hash = "sha256-WSu78k0udlXxiQ1sAqB/LKmVfThxizshH5C9q2CfZLI=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25     gettext
26   ];
28   buildInputs = [
29     fcitx5
30     libchewing
31   ];
33   meta = with lib; {
34     description = "Chewing wrapper for Fcitx5";
35     homepage = "https://github.com/fcitx/fcitx5-chewing";
36     license = licenses.lgpl21Plus;
37     maintainers = with maintainers; [ xrelkd ];
38     platforms = platforms.linux;
39   };