summary refs log tree commit diff
path: root/pkgs/tools/text/jumanpp
diff options
context:
space:
mode:
authorMasayuki Takeda <mtakeda.enigsol@gmail.com>2018-04-17 18:37:44 +0900
committerMasayuki Takeda <mtakeda.enigsol@gmail.com>2018-04-17 18:37:44 +0900
commit4f784cd2da53dc76cfd6438013d0e94f6016fd3c (patch)
treee2accedd36644c7ca2a751662d797d200c0cb75d /pkgs/tools/text/jumanpp
parent78b2345bf99390ef15daee692e5299da9696b65e (diff)
downloadnixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.tar
nixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.tar.gz
nixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.tar.bz2
nixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.tar.lz
nixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.tar.xz
nixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.tar.zst
nixpkgs-4f784cd2da53dc76cfd6438013d0e94f6016fd3c.zip
jumanpp: init at 1.02
Diffstat (limited to 'pkgs/tools/text/jumanpp')
-rw-r--r--pkgs/tools/text/jumanpp/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/text/jumanpp/default.nix b/pkgs/tools/text/jumanpp/default.nix
new file mode 100644
index 00000000000..b30b3335454
--- /dev/null
+++ b/pkgs/tools/text/jumanpp/default.nix
@@ -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;
+  };
+}