2021-05-18 12:24:54 -07:00
|
|
|
{ lib, stdenv, fetchurl, cmake, protobuf, libiconv }:
|
2020-12-30 23:48:55 -08:00
|
|
|
|
2018-04-17 02:37:44 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-28 05:59:57 -07:00
|
|
|
pname = "jumanpp";
|
2021-05-15 01:40:04 -07:00
|
|
|
version = "2.0.0-rc3";
|
2018-04-17 19:24:20 -07:00
|
|
|
|
2018-04-17 02:37:44 -07:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://github.com/ku-nlp/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz";
|
2021-05-15 01:40:04 -07:00
|
|
|
sha256 = "sha256-ASdr6qbkSe71M7QmuuwidCa4xQhDVoXBJ2XqvSY53pQ=";
|
2018-04-17 02:37:44 -07:00
|
|
|
};
|
2021-05-18 12:24:54 -07:00
|
|
|
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-05-18 12:24:54 -07:00
|
|
|
buildInputs = [ protobuf ]
|
|
|
|
++ lib.optional stdenv.isDarwin libiconv;
|
2018-04-17 19:24:20 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-04-17 02:37:44 -07:00
|
|
|
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).
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://nlp.ist.i.kyoto-u.ac.jp/index.php?JUMAN++";
|
2018-04-17 02:37:44 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ mt-caret ];
|
2018-04-17 19:25:23 -07:00
|
|
|
platforms = platforms.all;
|
2018-04-17 02:37:44 -07:00
|
|
|
};
|
|
|
|
}
|