summary refs log tree commit diff
path: root/pkgs/tools/text/jumanpp/default.nix
blob: 6be7106f2b957dc442c0b8d1077ec53d894eb77d (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
{ stdenv, fetchurl, cmake, protobuf }:
stdenv.mkDerivation rec {
  pname = "jumanpp";
  version = "2.0.0-rc2";

  src = fetchurl {
    url = "https://github.com/ku-nlp/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz";
    sha256 = "17fzmd0f5m9ayfhsr0mg7hjp3pg1mhbgknhgyd8v87x46g8bg6qp";
  };
  buildInputs = [ cmake protobuf ];

  meta = with stdenv.lib; {
    description = "A Japanese morphological analyser using a recurrent neural network language model (RNNLM)";
    longDescription = ''
      JUMAN++ is a new morphological analyser that considers semantic
      plausibility of word sequences by using a recurrent neural network
      language model (RNNLM).
    '';
    homepage = http://nlp.ist.i.kyoto-u.ac.jp/index.php?JUMAN++;
    license = licenses.asl20;
    maintainers = with maintainers; [ mt-caret ];
    platforms = platforms.all;
  };
}