jumanpp: init at 1.02
This commit is contained in:
parent
78b2345bf9
commit
4f784cd2da
22
pkgs/tools/text/jumanpp/default.nix
Normal file
22
pkgs/tools/text/jumanpp/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, fetchurl, boost, libunwind, gperftools }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "jumanpp";
|
||||||
|
version = "1.02";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://lotus.kuee.kyoto-u.ac.jp/nl-resource/jumanpp/jumanpp-${version}.tar.xz";
|
||||||
|
sha256 = "14768b419bak8h2px8chw4cbfscb0jj012bpr769qv5nn6f53yh1";
|
||||||
|
};
|
||||||
|
buildInputs = [ boost libunwind gperftools ];
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -3395,6 +3395,8 @@ with pkgs;
|
|||||||
|
|
||||||
ispell = callPackage ../tools/text/ispell {};
|
ispell = callPackage ../tools/text/ispell {};
|
||||||
|
|
||||||
|
jumanpp = callPackage ../tools/text/jumanpp {};
|
||||||
|
|
||||||
kindlegen = callPackage ../tools/typesetting/kindlegen { };
|
kindlegen = callPackage ../tools/typesetting/kindlegen { };
|
||||||
|
|
||||||
latex2html = callPackage ../tools/misc/latex2html { };
|
latex2html = callPackage ../tools/misc/latex2html { };
|
||||||
|
Loading…
Reference in New Issue
Block a user