2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-08-27 08:39:34 +01:00
|
|
|
|
2019-06-09 05:41:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-27 08:39:34 +01:00
|
|
|
name = "anthy-9100h";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-27 08:39:34 +01:00
|
|
|
description = "Hiragana text to Kana Kanji mixed text Japanese input method";
|
2019-06-09 05:41:30 +01:00
|
|
|
homepage = "https://anthy.osdn.jp/";
|
2014-08-27 08:39:34 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-20 06:03:58 +00:00
|
|
|
maintainers = with maintainers; [ ericsagnes ];
|
2021-03-04 08:15:04 +00:00
|
|
|
platforms = platforms.unix;
|
2014-08-27 08:39:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-09 05:41:30 +01:00
|
|
|
url = "mirror://osdn/anthy/37536/${name}.tar.gz";
|
2014-08-27 08:39:34 +01:00
|
|
|
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
|
|
|
|
};
|
|
|
|
}
|