about summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-08-25 17:30:47 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-08-25 17:36:33 +0900
commit9dc5952bfa417c059a53af917719ea4a8d4bfb88 (patch)
tree1929c9afd905dd81375ab58b3249ef86adfda9db /pkgs/tools/text
parent01c197df689a9794885a80d965311696377e0efb (diff)
downloadnixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.tar
nixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.tar.gz
nixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.tar.bz2
nixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.tar.lz
nixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.tar.xz
nixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.tar.zst
nixlib-9dc5952bfa417c059a53af917719ea4a8d4bfb88.zip
kytea: init at 0.4.7
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/kytea/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/text/kytea/default.nix b/pkgs/tools/text/kytea/default.nix
new file mode 100644
index 000000000000..2aec0d04a619
--- /dev/null
+++ b/pkgs/tools/text/kytea/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+
+  name    = "kytea-${version}";
+  version = "0.4.7";
+
+  src = fetchurl {
+    url    = "http://www.phontron.com/kytea/download/kytea-0.4.6.tar.gz";
+    sha256 = "0n6d88j0qda4dmy6mcj0cyin46n05m5phvjiah9i4ip54h8vs9s3";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = http://www.phontron.com/kytea/;
+    description = "General toolkit developed for analyzing text";
+
+    longDescription = ''
+      A general toolkit developed for analyzing text, with a focus on Japanese, 
+      Chinese and other languages requiring word or morpheme segmentation.
+    '';
+
+    license = licenses.asl20;
+
+    maintainers = [ maintainers.ericsagnes ];
+    platforms = platforms.linux;
+  };
+
+}