blob: 884d77a7005d5ca38abf83becfe2995eea882e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
kdePackages,
fcitx5,
lua,
gettext,
}:
stdenv.mkDerivation rec {
pname = "fcitx5-lua";
version = "5.0.16";
src = fetchFromGitHub {
owner = "fcitx";
repo = pname;
rev = version;
hash = "sha256-df0BjORGT+zx/8kg/nGPDa9MBAXpPtdfx8S5O+E31wE=";
};
nativeBuildInputs = [
cmake
pkg-config
kdePackages.extra-cmake-modules
gettext
];
buildInputs = [
fcitx5
lua
];
passthru = {
extraLdLibraries = [ lua ];
};
meta = {
description = "Lua support for Fcitx 5";
homepage = "https://github.com/fcitx/fcitx5-lua";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ poscat ];
platforms = lib.platforms.linux;
};
}
|