Merge pull request #3805 from iyzsong/anthy
add anthy, Japanese input method
This commit is contained in:
commit
b6bc65ab23
2 changed files with 20 additions and 0 deletions
18
pkgs/tools/inputmethods/anthy/default.nix
Normal file
18
pkgs/tools/inputmethods/anthy/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ iyzsong ];
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
|
||||
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
|
||||
};
|
||||
}
|
|
@ -803,6 +803,8 @@ let
|
|||
|
||||
usb_modeswitch = callPackage ../development/tools/misc/usb-modeswitch { };
|
||||
|
||||
anthy = callPackage ../tools/inputmethods/anthy { };
|
||||
|
||||
biosdevname = callPackage ../tools/networking/biosdevname { };
|
||||
|
||||
clamav = callPackage ../tools/security/clamav { };
|
||||
|
|
Loading…
Reference in a new issue