nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix
ercao 6a2a15948b
fcitx5-with-addons: fix not found liblua.so
Signed-off-by: ercao <vip@ercao.cn>
2022-12-08 10:55:40 +08:00

37 lines
713 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, extra-cmake-modules
, fcitx5
, lua
, gettext
}:
stdenv.mkDerivation rec {
pname = "fcitx5-lua";
version = "5.0.10";
src = fetchFromGitHub {
owner = "fcitx";
repo = pname;
rev = version;
sha256 = "sha256-0ESgQv8kyc+zv/tDZtBZ+QhFFswD80ApwswFlJs8tOU=";
};
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [ fcitx5 lua gettext ];
passthru = {
extraLdLibraries = [ lua ];
};
meta = with lib; {
description = "Lua support for Fcitx 5";
homepage = "https://github.com/fcitx/fcitx5-lua";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ poscat ];
platforms = platforms.linux;
};
}