Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions nix/packages/fcitx5-lotus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,29 @@
stdenv,
buildGoModule,
cmake,
extra-cmake-modules ? null,
fcitx5,
fetchFromGitHub,
gettext,
go,
hicolor-icon-theme,
kdePackages,
kdePackages ? null,
libinput,
libx11,
pkg-config,
python3,
qt6,
udev,
}:
let
ecm =
if extra-cmake-modules != null then
extra-cmake-modules
else if kdePackages != null then
kdePackages.extra-cmake-modules
else
throw "Cannot find extra-cmake-modules";
Comment thread
justanoobcoder marked this conversation as resolved.
in
stdenv.mkDerivation rec {
pname = "fcitx5-lotus";
version = "3.1.0";
Expand All @@ -30,7 +40,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [
cmake
kdePackages.extra-cmake-modules
ecm
gettext
go
hicolor-icon-theme
Expand Down
Loading