1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation {
4 name = "anthy-9100h";
5
6 meta = with stdenv.lib; {
7 description = "Hiragana text to Kana Kanji mixed text Japanese input method";
8 homepace = http://sourceforge.jp/projects/anthy/;
9 license = licenses.gpl2Plus;
10 platforms = platforms.linux;
11 maintainers = with maintainers; [ iyzsong ];
12 };
13
14 src = fetchurl {
15 url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
16 sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
17 };
18}