depot/third_party/nixpkgs/pkgs/tools/inputmethods/anthy/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

18 lines
507 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "anthy-9100h";
meta = with stdenv.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.linux;
};
src = fetchurl {
url = "mirror://osdn/anthy/37536/${name}.tar.gz";
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
};
}