Merge pull request #39056 from mt-caret/jumanpp

jumanpp: init at 1.02
This commit is contained in:
Jörg Thalheim 2018-04-21 10:27:57 +01:00 committed by GitHub
commit a769ffc85c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake, protobuf }:
stdenv.mkDerivation rec {
name = "jumanpp";
version = "2.0.0-rc2";
src = fetchurl {
url = "https://github.com/ku-nlp/${name}/releases/download/v${version}/${name}-${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;
};
}

View File

@ -3397,6 +3397,8 @@ with pkgs;
ispell = callPackage ../tools/text/ispell {};
jumanpp = callPackage ../tools/text/jumanpp {};
kindlegen = callPackage ../tools/typesetting/kindlegen { };
latex2html = callPackage ../tools/misc/latex2html { };