Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-16.03 17 lines 479 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation { 4 name = "anthy-9100h"; 5 6 meta = with stdenv.lib; { 7 description = "Hiragana text to Kana Kanji mixed text Japanese input method"; 8 homepace = http://sourceforge.jp/projects/anthy/; 9 license = licenses.gpl2Plus; 10 platforms = platforms.linux; 11 }; 12 13 src = fetchurl { 14 url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz"; 15 sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj"; 16 }; 17}