summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-04-22 22:31:30 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-04-22 22:31:30 +0300
commit3c6e077301146c221c3780afb66d93523fbebd27 (patch)
treee3f1b18251e151298e15fa0727c0bd42695aec93 /pkgs/tools/text
parentc70a245bb314250271c0fa1b6bcc78f80f867dfe (diff)
parent6a819c8f8c9100eb1a79515f10ad2d0d49b42ed5 (diff)
downloadnixlib-3c6e077301146c221c3780afb66d93523fbebd27.tar
nixlib-3c6e077301146c221c3780afb66d93523fbebd27.tar.gz
nixlib-3c6e077301146c221c3780afb66d93523fbebd27.tar.bz2
nixlib-3c6e077301146c221c3780afb66d93523fbebd27.tar.lz
nixlib-3c6e077301146c221c3780afb66d93523fbebd27.tar.xz
nixlib-3c6e077301146c221c3780afb66d93523fbebd27.tar.zst
nixlib-3c6e077301146c221c3780afb66d93523fbebd27.zip
Merge remote-tracking branch 'upstream/master' into HEAD
Conflicts:
	pkgs/development/tools/misc/binutils/default.nix
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/jumanpp/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/text/jumanpp/default.nix b/pkgs/tools/text/jumanpp/default.nix
new file mode 100644
index 000000000000..c4cb12cb6938
--- /dev/null
+++ b/pkgs/tools/text/jumanpp/default.nix
@@ -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;
+  };
+}