1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 09:53:17 +00:00
nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix

41 lines
723 B
Nix
Raw Normal View History

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