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