mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
fcitx5-anthy: init at 5.0.13
This commit is contained in:
parent
4e852c5791
commit
2e7c15c76f
22
pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix
Normal file
22
pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, stdenv, fetchurl, cmake, extra-cmake-modules, pkg-config, fcitx5, anthy, gettext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fcitx5-anthy";
|
||||
version = "5.0.13";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-EGpyYiNalm4En3Oa++hyOSPLhjbkVcDyZt3LqamfSOI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
|
||||
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;
|
||||
};
|
||||
}
|
@ -11,6 +11,7 @@ REPOS = [
|
||||
"xcb-imdkit",
|
||||
|
||||
"fcitx5",
|
||||
"fcitx5-anthy",
|
||||
"fcitx5-chewing",
|
||||
"fcitx5-chinese-addons",
|
||||
"fcitx5-configtool",
|
||||
|
@ -7033,6 +7033,8 @@ with pkgs;
|
||||
|
||||
fcitx5-configtool = libsForQt5.callPackage ../tools/inputmethods/fcitx5/fcitx5-configtool.nix { };
|
||||
|
||||
fcitx5-anthy = callPackage ../tools/inputmethods/fcitx5/fcitx5-anthy.nix { };
|
||||
|
||||
fcitx5-chewing = callPackage ../tools/inputmethods/fcitx5/fcitx5-chewing.nix { };
|
||||
|
||||
fcitx5-lua = callPackage ../tools/inputmethods/fcitx5/fcitx5-lua.nix { lua = lua5_3; };
|
||||
|
Loading…
Reference in New Issue
Block a user