fcitx: 4.2.8.5 -> 4.2.9

authored by Eric Sagnes and committed by 宋文武 db28fa40 68742214

+5 -5
+5 -5
pkgs/tools/inputmethods/fcitx/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, cmake, intltool, gettext 2 2 , libxml2, enchant, isocodes, icu, libpthreadstubs 3 3 , pango, cairo, libxkbfile, libXau, libXdmcp 4 - , dbus, gtk2, gtk3, qt4 4 + , dbus, gtk2, gtk3, qt4, kde5 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "fcitx-${version}"; 9 - version = "4.2.8.5"; 9 + version = "4.2.9"; 10 10 11 11 src = fetchurl { 12 12 url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz"; 13 - sha256 = "0whv7mnzig4l5v518r200psa1fp3dyl1jkr5z0q13ijzh1bnyggy"; 13 + sha256 = "0v7wdf3qf74vz8q090w8k574wvfcpj9ksfcfdw93nmzyk1q5p4rs"; 14 14 }; 15 15 16 16 patchPhase = '' ··· 21 21 buildInputs = with stdenv.lib; [ 22 22 cmake enchant pango gettext libxml2 isocodes pkgconfig libxkbfile 23 23 intltool cairo icu libpthreadstubs libXau libXdmcp 24 - dbus gtk2 gtk3 qt4 24 + dbus gtk2 gtk3 qt4 kde5.extra-cmake-modules 25 25 ]; 26 26 27 27 cmakeFlags = '' ··· 39 39 description = "A Flexible Input Method Framework"; 40 40 license = stdenv.lib.licenses.gpl2; 41 41 platforms = stdenv.lib.platforms.linux; 42 - maintainers = with stdenv.lib.maintainers; [iyzsong]; 42 + maintainers = with stdenv.lib.maintainers; [iyzsong ericsagnes]; 43 43 }; 44 44 }