nixpkgs/pkgs/tools/text/kytea/default.nix

31 lines
764 B
Nix
Raw Normal View History

2016-08-25 10:30:47 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "kytea-${version}";
version = "0.4.7";
src = fetchurl {
url = "http://www.phontron.com/kytea/download/${name}.tar.gz";
sha256 = "0ilzzwn5vpvm65bnbyb9f5rxyxy3jmbafw9w0lgl5iad1ka36jjk";
2016-08-25 10:30:47 +02:00
};
patches = [ ./gcc-O3.patch ];
2016-08-25 10:30:47 +02:00
meta = with stdenv.lib; {
homepage = http://www.phontron.com/kytea/;
description = "General toolkit developed for analyzing text";
longDescription = ''
A general toolkit developed for analyzing text, with a focus on Japanese,
2016-08-25 10:30:47 +02:00
Chinese and other languages requiring word or morpheme segmentation.
'';
license = licenses.asl20;
maintainers = with maintainers; [ ericsagnes ndowens ];
2016-08-25 10:30:47 +02:00
platforms = platforms.linux;
};
}