linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-lua.nix
blobf4df324fa05871441dbfbc3ebc5a09d8ebeeacac
1 { lib, stdenv
2 , fetchFromGitHub
3 , cmake
4 , extra-cmake-modules
5 , fcitx5
6 , lua5_3
7 , luaPackage ? lua5_3
8 , gettext
9 }:
11 stdenv.mkDerivation rec {
12   pname = "fcitx5-lua";
13   version = "5.0.4";
15   src = fetchFromGitHub {
16     owner = "fcitx";
17     repo = "fcitx5-lua";
18     rev = version;
19     sha256 = "sha256-1gKfFq+x/tCOYqESO49Qddp5z6zXO7ULjTJgDEl8BqI=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25   ];
27   buildInputs = [
28     fcitx5
29     luaPackage
30     gettext
31   ];
33   meta = with lib; {
34     description = "Lua support for Fcitx 5";
35     homepage = "https://github.com/fcitx/fcitx5-lua";
36     license = licenses.lgpl21Plus;
37     maintainers = with maintainers; [ poscat ];
38     platforms = platforms.linux;
39   };