ibus-anthy: 1.5.7 -> 1.5.8

This commit is contained in:
Eric Sagnes 2016-02-10 13:15:26 +09:00
parent 3c9892d4d4
commit dd579a5576

View File

@ -1,20 +1,24 @@
{ stdenv, fetchurl, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection, python, pythonPackages }: { stdenv, fetchFromGitHub, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection,
python, pythonPackages, gtk3, libtool, automake, autoconf }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ibus-anthy-${version}"; name = "ibus-anthy-${version}";
version = "1.5.7"; version = "1.5.8";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "IBus interface to the anthy input method"; description = "IBus interface to the anthy input method";
homepage = http://wiki.github.com/fujiwarat/ibus-anthy; homepage = http://wiki.github.com/fujiwarat/ibus-anthy;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ gebner ]; maintainers = with maintainers; [ gebner ericsagnes ];
}; };
preConfigure = "./autogen.sh --prefix=$out";
configureFlags = "--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t"; configureFlags = "--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t";
buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection python pythonPackages.pygobject3 ]; buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection
python pythonPackages.pygobject3 gtk3 libtool automake autoconf ];
postFixup = '' postFixup = ''
substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out
@ -25,8 +29,10 @@ stdenv.mkDerivation rec {
done done
''; '';
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/ibus/ibus-anthy/releases/download/${version}/${name}.tar.gz"; owner = "ibus";
sha256 = "00sjrfhghrgkqm72mf39f8sz6wr4fwvvs9mn2alaldhgr5v0c861"; repo = "ibus-anthy";
rev = version;
sha256 = "1laxwpnhgihv4dz5cgcz6d0a0880r93n7039ciz1m53hdzapwi4a";
}; };
} }