2022-11-25T13:56:38 fcitx5-gtk 5.0.20 -> 5.0.21 https://repology.org/metapackage/fcitx5-gtk/versions 2022-11-25T13:56:40 attrpath: fcitx5-gtk 2022-11-25T13:56:40 Checking auto update branch... 2022-11-25T13:56:40 No auto update branch exists 2022-11-25T13:56:41 Old version 5.0.20" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , cmake , extra-cmake-modules , fcitx5 , gobject-introspection , glib , gtk2 , gtk3 , gtk4 , fmt , pcre , libuuid , libselinux , libsepol , libthai , libdatrie , libXdmcp , libxkbcommon , libepoxy , dbus , at-spi2-core , libXtst , withGTK2 ? false }: stdenv.mkDerivation rec { pname = "fcitx5-gtk"; version = "5.0.21"; src = fetchFromGitHub { owner = "fcitx"; repo = pname; rev = version; sha256 = "sha256-LGTAKFeiCoUsjVFUcIG7U7riYyb/AfhiYkmNu3aO56M="; }; cmakeFlags = [ "-DGOBJECT_INTROSPECTION_GIRDIR=share/gir-1.0" "-DGOBJECT_INTROSPECTION_TYPELIBDIR=lib/girepository-1.0" ] ++ lib.optional (! withGTK2) "-DENABLE_GTK2_IM_MODULE=off"; buildInputs = [ glib gtk3 gtk4 fmt gobject-introspection fcitx5 pcre libuuid libselinux libsepol libthai libdatrie libXdmcp libxkbcommon libepoxy dbus at-spi2-core libXtst ] ++ lib.optional withGTK2 gtk2; nativeBuildInputs = [ cmake extra-cmake-modules ]; meta = with lib; { description = "Fcitx5 gtk im module and glib based dbus client library"; homepage = "https://github.com/fcitx/fcitx5-gtk"; license = licenses.lgpl21Plus; maintainers = with maintainers; [ poscat ]; platforms = platforms.linux; }; }