nixpkgs/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix

40 lines
1.3 KiB
Nix
Raw Normal View History

2016-02-09 20:15:26 -08:00
{ stdenv, fetchFromGitHub, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection,
python, pythonPackages, gtk3, libtool, automake, autoconf }:
2015-03-10 11:28:36 -07:00
stdenv.mkDerivation rec {
2015-03-10 11:28:36 -07:00
name = "ibus-anthy-${version}";
2016-02-09 20:15:26 -08:00
version = "1.5.8";
2015-03-10 11:28:36 -07:00
meta = with stdenv.lib; {
2016-02-09 23:10:35 -08:00
isIbusEngine = true;
description = "IBus interface to the anthy input method";
homepage = http://wiki.github.com/fujiwarat/ibus-anthy;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ gebner ericsagnes ];
2015-03-10 11:28:36 -07:00
};
2016-02-09 20:15:26 -08:00
preConfigure = "./autogen.sh --prefix=$out";
configureFlags = "--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t";
2016-02-09 20:15:26 -08:00
buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection
python pythonPackages.pygobject3 gtk3 libtool automake autoconf ];
2015-03-10 11:28:36 -07:00
postFixup = ''
substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out
2015-03-10 11:28:36 -07:00
for file in "$out"/libexec/*; do
wrapProgram "$file" \
--prefix PYTHONPATH : $PYTHONPATH \
--prefix GI_TYPELIB_PATH : $GI_TYPELIB_PATH:$out/lib/girepository-1.0
done
'';
2016-02-09 20:15:26 -08:00
src = fetchFromGitHub {
owner = "ibus";
repo = "ibus-anthy";
rev = version;
sha256 = "1laxwpnhgihv4dz5cgcz6d0a0880r93n7039ciz1m53hdzapwi4a";
2015-03-10 11:28:36 -07:00
};
}