biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-anthy.nix
blobea9a20944110da5bf6d86fe029152854d41675d6
1 { lib, stdenv, fetchurl, cmake, extra-cmake-modules, pkg-config, fcitx5, anthy
2 , gettext, zstd }:
4 stdenv.mkDerivation rec {
5   pname = "fcitx5-anthy";
6   version = "5.1.5";
8   src = fetchurl {
9     url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.zst";
10     hash = "sha256-heSO2eArdSnOmIg7JG8vOo5y3g5dSPOuXkUfeNqKzSA=";
11   };
13   nativeBuildInputs = [ cmake extra-cmake-modules pkg-config zstd ];
14   buildInputs = [ fcitx5 anthy gettext ];
16   meta = with lib; {
17     description = "Anthy Wrapper for Fcitx5";
18     homepage = "https://github.com/fcitx/fcitx5-anthy";
19     license = licenses.gpl2Plus;
20     maintainers = with maintainers; [ elnudev ];
21     platforms = platforms.linux;
22   };