libsForQt5.fcitx5-qt: 5.1.1 -> 5.1.3

Diff: https://github.com/fcitx/fcitx5-qt/compare/5.1.1...5.1.3

Vonfry 06eebe5f 7359b442

+5 -3
+5 -3
pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix
··· 9 9 , libXdmcp 10 10 , qtbase 11 11 , qt6 12 + , wayland 12 13 }: 13 14 14 15 mkDerivation rec { 15 16 pname = "fcitx5-qt"; 16 - version = "5.1.1"; 17 + version = "5.1.3"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "fcitx"; 20 21 repo = pname; 21 22 rev = version; 22 - sha256 = "sha256-IkaaLFMyPVaL5taRN4e+QxMEsNhhXlA1fWBn/6PeGnI="; 23 + sha256 = "sha256-qXQ5nvPV5YHD8MFfeqgF8kyk0zf28lWxM8SUo3T6TzA="; 23 24 }; 24 25 25 26 preConfigure = '' ··· 31 32 32 33 cmakeFlags = [ 33 34 # adding qt6 to buildInputs would result in error: detected mismatched Qt dependencies 34 - "-DCMAKE_PREFIX_PATH=${qt6.qtbase}" 35 + "-DCMAKE_PREFIX_PATH=${qt6.qtbase};${qt6.qtwayland}" 35 36 "-DENABLE_QT4=0" 36 37 "-DENABLE_QT6=1" 37 38 ]; ··· 46 47 qtx11extras 47 48 libxcb 48 49 libXdmcp 50 + wayland 49 51 ]; 50 52 51 53 meta = with lib; {