about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/anthy/default.nix
blob: a421ca16e8cae9792cc28fe966e2ebe99dc8b995 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "anthy-9100h";

  meta = with stdenv.lib; {
    description = "Hiragana text to Kana Kanji mixed text Japanese input method";
    homepace    = http://sourceforge.jp/projects/anthy/;
    license     = licenses.gpl2Plus;
    platforms   = platforms.linux;
  };

  src = fetchurl {
    url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
    sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
  };
}