Files
syd-fcitx5-tables/package.nix
2025-11-05 03:48:35 -07:00

40 lines
610 B
Nix

{ lib
, stdenv
, gettext
, libime
, boost
, fcitx5
, kdePackages
, cmake
, extra-cmake-modules
}:
stdenv.mkDerivation rec {
pname = "syd-fcitx5-tables";
version = "2.0.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.
kdePackages.fcitx5-chinese-addons
];
meta = with lib; {
description = "Madeleine's Fcitx5 tables";
license = licenses.gpl3Only;
platforms = platforms.linux;
};
}