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

41 lines
722 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv
2020-12-13 04:23:55 +01:00
, fetchFromGitHub
, cmake
, extra-cmake-modules
, fcitx5
, lua5_3
, luaPackage ? lua5_3
, gettext
}:
stdenv.mkDerivation rec {
pname = "fcitx5-lua";
2021-02-21 15:17:02 +01:00
version = "5.0.3";
2020-12-13 04:23:55 +01:00
src = fetchFromGitHub {
owner = "fcitx";
repo = "fcitx5-lua";
rev = version;
2021-02-21 15:17:02 +01:00
sha256 = "sha256-46s3F3NHGuef0wPhYiPocms0jv5Vo+cVRd5FzlfjMZY=";
2020-12-13 04:23:55 +01:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
fcitx5
luaPackage
gettext
];
2021-01-15 10:19:50 +01:00
meta = with lib; {
2020-12-13 04:23:55 +01:00
description = "Lua support for Fcitx 5";
homepage = "https://github.com/fcitx/fcitx5-lua";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ poscat ];
platforms = platforms.linux;
};
}