lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 36 lines 713 B view raw
1{ lib 2, stdenv 3, fetchFromGitHub 4, cmake 5, extra-cmake-modules 6, fcitx5 7, lua 8, gettext 9}: 10stdenv.mkDerivation rec { 11 pname = "fcitx5-lua"; 12 version = "5.0.11"; 13 14 src = fetchFromGitHub { 15 owner = "fcitx"; 16 repo = pname; 17 rev = version; 18 sha256 = "sha256-FgRETT4YLA/B/5mBAJxyF2WI8TM0J51vdlJeoiJST1M="; 19 }; 20 21 nativeBuildInputs = [ cmake extra-cmake-modules ]; 22 23 buildInputs = [ fcitx5 lua gettext ]; 24 25 passthru = { 26 extraLdLibraries = [ lua ]; 27 }; 28 29 meta = with lib; { 30 description = "Lua support for Fcitx 5"; 31 homepage = "https://github.com/fcitx/fcitx5-lua"; 32 license = licenses.lgpl21Plus; 33 maintainers = with maintainers; [ poscat ]; 34 platforms = platforms.linux; 35 }; 36}