nixpkgs-suyu/pkgs/tools/inputmethods/anthy/default.nix

19 lines
507 B
Nix
Raw Normal View History

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