summary refs log tree commit diff
path: root/pkgs/tools/text/kytea/default.nix
blob: 621408866e8ca13eb171a4587a36a7cafba0e1fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {

  pname = "kytea";
  version = "0.4.7";

  src = fetchurl {
    url    = "http://www.phontron.com/kytea/download/${pname}-${version}.tar.gz";
    sha256 = "0ilzzwn5vpvm65bnbyb9f5rxyxy3jmbafw9w0lgl5iad1ka36jjk";
  };

  patches = [ ./gcc-O3.patch ];

  NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing";

  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,
      Chinese and other languages requiring word or morpheme segmentation.
    '';

    license = licenses.asl20;

    maintainers = with maintainers; [ ericsagnes ];
    platforms = platforms.unix;
  };

}