eigenmath: 3.33-unstable-2024-11-22 -> 3.35-unstable-2024-12-11 (#364381)
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-anthy.nix
bloba9c3d561561c54d8b920f5abccd8e2d1baa51933
2   lib,
3   stdenv,
4   fetchurl,
5   cmake,
6   extra-cmake-modules,
7   pkg-config,
8   fcitx5,
9   anthy,
10   gettext,
11   zstd,
14 stdenv.mkDerivation rec {
15   pname = "fcitx5-anthy";
16   version = "5.1.5";
18   src = fetchurl {
19     url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.zst";
20     hash = "sha256-heSO2eArdSnOmIg7JG8vOo5y3g5dSPOuXkUfeNqKzSA=";
21   };
23   nativeBuildInputs = [
24     cmake
25     extra-cmake-modules
26     pkg-config
27     zstd
28   ];
29   buildInputs = [
30     fcitx5
31     anthy
32     gettext
33   ];
35   meta = with lib; {
36     description = "Anthy Wrapper for Fcitx5";
37     homepage = "https://github.com/fcitx/fcitx5-anthy";
38     license = licenses.gpl2Plus;
39     maintainers = with maintainers; [ elnudev ];
40     platforms = platforms.linux;
41   };