mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
add anthy, Japanese input method
This commit is contained in:
parent
8a5f5e4e8b
commit
a3800db3d2
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";
|
||||
};
|
||||
}
|
@ -801,6 +801,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 New Issue
Block a user