fcitx5-unikey: init at 5.0.7 (#154699)
* fcitx5-unikey: init at 5.0.7 Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>
This commit is contained in:
parent
a3636bc91b
commit
048d5eeabd
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix
Normal file
27
pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, extra-cmake-modules, fcitx5, fcitx5-qt
|
||||
, ninja, gettext, wrapQtAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fcitx5-unikey";
|
||||
version = "5.0.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fcitx";
|
||||
repo = "fcitx5-unikey";
|
||||
rev = version;
|
||||
sha256 = "BFIqMmjIC29Z4rATZEf+qQWrULU9Wkuk6WOUXDEPO10=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
|
||||
|
||||
buildInputs = [ fcitx5 fcitx5-qt ninja gettext ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unikey engine support for Fcitx5";
|
||||
homepage = "https://github.com/fcitx/fcitx5-unikey";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ berberman ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -5228,6 +5228,8 @@ with pkgs;
|
|||
};
|
||||
};
|
||||
|
||||
fcitx5-unikey = libsForQt5.callPackage ../tools/inputmethods/fcitx5/fcitx5-unikey.nix { };
|
||||
|
||||
fcitx5-configtool = libsForQt5.callPackage ../tools/inputmethods/fcitx5/fcitx5-configtool.nix { };
|
||||
|
||||
fcitx5-lua = callPackage ../tools/inputmethods/fcitx5/fcitx5-lua.nix { };
|
||||
|
|
Loading…
Reference in a new issue