3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/jumanpp/default.nix
Matthew Bauer 02297beade treewide: add version to packages
Lots of packages are missing versions in their name. This adds them
where appropriate. These were found with this command:

 $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$'

See issue #41007.
2018-05-25 15:48:05 -05:00

25 lines
872 B
Nix

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