biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / inputmethods / anthy / default.nix
blob23e2da0e41e64a258edd04a315c69831d27444fb
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "anthy";
5   version = "9100h";
7   meta = with lib; {
8     description = "Hiragana text to Kana Kanji mixed text Japanese input method";
9     homepage    = "https://anthy.osdn.jp/";
10     license     = licenses.gpl2Plus;
11     maintainers = with maintainers; [ ericsagnes ];
12     platforms   = platforms.unix;
13   };
15   src = fetchurl {
16     url = "mirror://osdn/anthy/37536/anthy-${version}.tar.gz";
17     sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
18   };