{ 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; }; }