lol

Bump ibus, ibus-anthy, and ibus-qt to their latest versions.

+16 -16
+5 -5
pkgs/tools/inputmethods/ibus-anthy/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection, python, pythonPackages }: 2 2 3 - let version = "1.5.4"; 4 - in stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 5 4 name = "ibus-anthy-${version}"; 5 + version = "1.5.6"; 6 6 7 7 meta = with stdenv.lib; { 8 8 description = "IBus interface to the anthy input method"; 9 - homepace = https://code.google.com/p/ibus/; 9 + homepage = http://wiki.github.com/fujiwarat/ibus-anthy; 10 10 license = licenses.gpl2Plus; 11 11 platforms = platforms.linux; 12 12 maintainers = with maintainers; [ gebner ]; ··· 23 23 ''; 24 24 25 25 src = fetchurl { 26 - url = "https://ibus.googlecode.com/files/ibus-anthy-${version}.tar.gz"; 27 - sha256 = "4c0a8b88a2c547e72173a7d682d82797f6c65fe712abe5f3b89495d4eec7b031"; 26 + url = "https://github.com/ibus/ibus-anthy/releases/download/${version}/${name}.tar.gz"; 27 + sha256 = "0vl904l5862zxfi8fiiljwvqv4yvb3nfdbkmpcqk3zw4r1mn6p03"; 28 28 }; 29 29 }
+4 -4
pkgs/tools/inputmethods/ibus-qt/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "ibus-qt-${version}"; 5 - version = "1.3.2"; 5 + version = "1.3.3"; 6 6 7 7 src = fetchurl { 8 - url = "http://ibus.googlecode.com/files/${name}-Source.tar.gz"; 9 - sha256 = "070c8ef4e6c74eddf7ddf4385936aed730c2dfe2160162e5c56b5158d1061a76"; 8 + url = "https://github.com/ibus/ibus-qt/releases/download/${version}/${name}-Source.tar.gz"; 9 + sha256 = "1q9g7qghpcf07valc2ni7yf994xqx2pmdffknj7scxfidav6p19g"; 10 10 }; 11 11 12 12 buildInputs = [ ··· 16 16 cmakeFlags = [ "-DQT_PLUGINS_DIR=lib/qt4/plugins" ]; 17 17 18 18 meta = with stdenv.lib; { 19 - homepage = https://code.google.com/p/ibus/; 19 + homepage = https://github.com/ibus/ibus-qt/; 20 20 description = "Qt4 interface to the ibus input method"; 21 21 platforms = platforms.linux; 22 22 license = licenses.gpl2Plus;
+7 -7
pkgs/tools/inputmethods/ibus/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "ibus-${version}"; 6 - version = "1.5.5"; 6 + version = "1.5.10"; 7 7 8 8 src = fetchurl { 9 - url = "http://ibus.googlecode.com/files/${name}.tar.gz"; 10 - sha256 = "1v4a9xv2k26g6ggk4282ynfvh68j2r5hg1cdpvnryfa8c2pkdaq2"; 9 + url = "https://github.com/ibus/ibus/releases/download/${version}/${name}.tar.gz"; 10 + sha256 = "152mdzi9hr246spnn7bkb4gy16x30082xwq460gmm1q2cs0bf08x"; 11 11 }; 12 12 13 13 configureFlags = "--disable-gconf --enable-dconf --disable-memconf --enable-ui --enable-python-library"; ··· 19 19 libnotify isocodes gobjectIntrospection 20 20 ]; 21 21 22 - preBuild = '' 23 - patchShebangs ./scripts 24 - substituteInPlace data/dconf/Makefile --replace "dconf update" "echo" 22 + preConfigure = '' 23 + substituteInPlace data/dconf/Makefile.in --replace "dconf update" "echo" 24 + sed -i "s|PYTHON2_LIBDIR=.*|PYTHON2_LIBDIR=$out/lib/${python.libPrefix}|" configure 25 25 ''; 26 26 27 27 preFixup = '' ··· 35 35 ''; 36 36 37 37 meta = { 38 - homepage = https://code.google.com/p/ibus/; 38 + homepage = https://github.com/ibus/ibus; 39 39 description = "Intelligent Input Bus for Linux / Unix OS"; 40 40 platforms = stdenv.lib.platforms.linux; 41 41 };