nixpkgs/pkgs/tools/text/jumanpp/default.nix

26 lines
895 B
Nix
Raw Normal View History

2018-04-18 03:24:20 +01:00
{ stdenv, fetchurl, cmake, protobuf }:
2018-04-17 10:37:44 +01:00
stdenv.mkDerivation rec {
2018-05-28 13:59:57 +01:00
pname = "jumanpp";
name = "${pname}-${version}";
2018-04-18 03:24:20 +01:00
version = "2.0.0-rc2";
2018-04-17 10:37:44 +01:00
src = fetchurl {
2018-05-28 13:59:57 +01:00
url = "https://github.com/ku-nlp/${pname}/releases/download/v${version}/${name}.tar.xz";
2018-04-18 03:24:20 +01:00
sha256 = "17fzmd0f5m9ayfhsr0mg7hjp3pg1mhbgknhgyd8v87x46g8bg6qp";
2018-04-17 10:37:44 +01:00
};
2018-04-18 03:24:20 +01:00
buildInputs = [ cmake protobuf ];
2018-04-17 10:37:44 +01:00
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 ];
2018-04-18 03:25:23 +01:00
platforms = platforms.all;
2018-04-17 10:37:44 +01:00
};
}