ibus: 1.5.31 -> 1.5.32 (#399949)

authored by Pol Dellaiera and committed by GitHub 7b66c98f 1fa850bc

+22 -15
+22 -15
pkgs/tools/inputmethods/ibus/default.nix
··· 31 withWayland ? true, 32 libxkbcommon, 33 wayland, 34 buildPackages, 35 runtimeShell, 36 nixosTests, ··· 61 62 stdenv.mkDerivation rec { 63 pname = "ibus"; 64 - version = "1.5.31"; 65 66 src = fetchFromGitHub { 67 owner = "ibus"; 68 repo = "ibus"; 69 - rev = version; 70 - sha256 = "sha256-YMCtLIK/9iUdS37Oiow7WMhFFPKhomNXvzWbLzlUkdQ="; 71 }; 72 73 patches = [ ··· 136 pkg-config 137 ]; 138 139 - nativeBuildInputs = [ 140 - autoreconfHook 141 - gtk-doc 142 - gettext 143 - makeWrapper 144 - pkg-config 145 - python3BuildEnv 146 - vala 147 - wrapGAppsHook3 148 - dbus-launch 149 - gobject-introspection 150 - ]; 151 152 propagatedBuildInputs = [ 153 glib ··· 171 ++ lib.optionals withWayland [ 172 libxkbcommon 173 wayland 174 ]; 175 176 enableParallelBuilding = true;
··· 31 withWayland ? true, 32 libxkbcommon, 33 wayland, 34 + wayland-protocols, 35 + wayland-scanner, 36 buildPackages, 37 runtimeShell, 38 nixosTests, ··· 63 64 stdenv.mkDerivation rec { 65 pname = "ibus"; 66 + version = "1.5.32"; 67 68 src = fetchFromGitHub { 69 owner = "ibus"; 70 repo = "ibus"; 71 + tag = version; 72 + hash = "sha256-Rp2Aw2C2LXMBp8++pnZtPHiPoFDERpkDsKd0E//twuY="; 73 }; 74 75 patches = [ ··· 138 pkg-config 139 ]; 140 141 + nativeBuildInputs = 142 + [ 143 + autoreconfHook 144 + gtk-doc 145 + gettext 146 + makeWrapper 147 + pkg-config 148 + python3BuildEnv 149 + vala 150 + wrapGAppsHook3 151 + dbus-launch 152 + gobject-introspection 153 + ] 154 + ++ lib.optionals withWayland [ 155 + wayland-scanner 156 + ]; 157 158 propagatedBuildInputs = [ 159 glib ··· 177 ++ lib.optionals withWayland [ 178 libxkbcommon 179 wayland 180 + wayland-protocols 181 ]; 182 183 enableParallelBuilding = true;