Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 16.09 18 lines 531 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 maintainers = with maintainers; [ ericsagnes ]; 11 platforms = platforms.linux; 12 }; 13 14 src = fetchurl { 15 url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz"; 16 sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj"; 17 }; 18}