about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/anthy/default.nix
blob: 4fbd0965c785f001948e7dc949dc5a27fe40acb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
    maintainers = with maintainers; [ ericsagnes ];
    platforms   = platforms.linux;
  };

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