Files
syd-fcitx5-tables/package.nix
2025-09-04 09:19:09 -06:00

40 lines
608 B
Nix

{ lib
, stdenv
, gettext
, libime
, boost
, fcitx5
, libsForQt5
, cmake
, extra-cmake-modules
}:
stdenv.mkDerivation rec {
pname = "syd-fcitx5-tables";
version = "1.2.0";
src = ./.;
nativeBuildInputs = [
cmake
extra-cmake-modules
gettext
libime
fcitx5
];
buildInputs = [
boost
# Provides the table engine, without which this package is useless. See
# Nixpkgs issue #126748.
libsForQt5.fcitx5-chinese-addons
];
meta = with lib; {
description = "Madeleine's Fcitx5 tables";
license = licenses.gpl3Only;
platforms = platforms.linux;
};
}