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

19 lines
504 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2014-08-27 07:39:34 +00:00
2019-06-09 04:41:30 +00:00
stdenv.mkDerivation rec {
2014-08-27 07:39:34 +00:00
name = "anthy-9100h";
meta = with lib; {
2014-08-27 07:39:34 +00:00
description = "Hiragana text to Kana Kanji mixed text Japanese input method";
2019-06-09 04:41:30 +00:00
homepage = "https://anthy.osdn.jp/";
2014-08-27 07:39:34 +00: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 07:39:34 +00:00
};
src = fetchurl {
2019-06-09 04:41:30 +00:00
url = "mirror://osdn/anthy/37536/${name}.tar.gz";
2014-08-27 07:39:34 +00:00
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
};
}