nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
712 B
Nix
Raw Normal View History

2024-04-23 11:58:11 +01:00
{ lib, stdenv, fetchurl, cmake, extra-cmake-modules, pkg-config, fcitx5, anthy
, gettext, zstd }:
2023-01-18 00:15:58 +00:00
stdenv.mkDerivation rec {
pname = "fcitx5-anthy";
2024-10-09 01:34:14 +01:00
version = "5.1.5";
2023-01-18 00:15:58 +00:00
src = fetchurl {
2024-04-23 11:58:11 +01:00
url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.zst";
2024-10-09 01:34:14 +01:00
hash = "sha256-heSO2eArdSnOmIg7JG8vOo5y3g5dSPOuXkUfeNqKzSA=";
2023-01-18 00:15:58 +00:00
};
2024-04-23 11:58:11 +01:00
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config zstd ];
2023-01-18 00:15:58 +00:00
buildInputs = [ fcitx5 anthy gettext ];
meta = with lib; {
description = "Anthy Wrapper for Fcitx5";
homepage = "https://github.com/fcitx/fcitx5-anthy";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ elnudev ];
platforms = platforms.linux;
};
}