about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/inputmethods/anthy/default.nix
blob: 23e2da0e41e64a258edd04a315c69831d27444fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "anthy";
  version = "9100h";

  meta = with lib; {
    description = "Hiragana text to Kana Kanji mixed text Japanese input method";
    homepage    = "https://anthy.osdn.jp/";
    license     = licenses.gpl2Plus;
    maintainers = with maintainers; [ ericsagnes ];
    platforms   = platforms.unix;
  };

  src = fetchurl {
    url = "mirror://osdn/anthy/37536/anthy-${version}.tar.gz";
    sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
  };
}