···11+{ stdenv, fetchurl }:
22+33+stdenv.mkDerivation rec {
44+55+ name = "kytea-${version}";
66+ version = "0.4.7";
77+88+ src = fetchurl {
99+ url = "http://www.phontron.com/kytea/download/kytea-0.4.6.tar.gz";
1010+ sha256 = "0n6d88j0qda4dmy6mcj0cyin46n05m5phvjiah9i4ip54h8vs9s3";
1111+ };
1212+1313+ meta = with stdenv.lib; {
1414+ homepage = http://www.phontron.com/kytea/;
1515+ description = "General toolkit developed for analyzing text";
1616+1717+ longDescription = ''
1818+ A general toolkit developed for analyzing text, with a focus on Japanese,
1919+ Chinese and other languages requiring word or morpheme segmentation.
2020+ '';
2121+2222+ license = licenses.asl20;
2323+2424+ maintainers = [ maintainers.ericsagnes ];
2525+ platforms = platforms.linux;
2626+ };
2727+2828+}