This commit is contained in:
2025-07-17 19:56:22 -06:00
commit 66f8f46e69
20 changed files with 3433 additions and 0 deletions

39
package.nix Normal file
View File

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