nixpkgs/pkgs/tools/inputmethods/anthy/default.nix
2014-08-27 15:41:50 +08:00

19 lines
528 B
Nix

{ 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;
maintainers = with maintainers; [ iyzsong ];
};
src = fetchurl {
url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
};
}