nixpkgs/pkgs/tools/inputmethods/anthy/default.nix

19 lines
531 B
Nix
Raw Normal View History

2014-08-27 07:39:34 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "anthy-9100h";
meta = with stdenv.lib; {
description = "Hiragana text to Kana Kanji mixed text Japanese input method";
homepage = http://sourceforge.jp/projects/anthy/;
2014-08-27 07:39:34 +00:00
license = licenses.gpl2Plus;
2016-03-20 06:03:58 +00:00
maintainers = with maintainers; [ ericsagnes ];
2014-08-27 07:39:34 +00:00
platforms = platforms.linux;
};
src = fetchurl {
url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
};
}