Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "anthy-9100h";
5
6 meta = with stdenv.lib; {
7 description = "Hiragana text to Kana Kanji mixed text Japanese input method";
8 homepage = "https://anthy.osdn.jp/";
9 license = licenses.gpl2Plus;
10 maintainers = with maintainers; [ ericsagnes ];
11 platforms = platforms.linux;
12 };
13
14 src = fetchurl {
15 url = "mirror://osdn/anthy/37536/${name}.tar.gz";
16 sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
17 };
18}