mecab: init at 0.996 (#16175)

Japanese morphological analysis system, used by Anki in particular
This commit is contained in:
Jonathan Glines
2016-06-26 22:47:23 +02:00
committed by Franz Pletz
parent 3832ebde8b
commit 8199cda762
5 changed files with 72 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ fetchurl }:
rec {
version = "0.996";
src = fetchurl {
url = https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7cENtOXlicTFaRUE;
name = "mecab-0.996.tar.gz";
sha256 = "0ncwlqxl1hdn1x4v4kr2sn1sbbcgnhdphp0lcvk74nqkhdbk4wz0";
};
buildPhase = ''
make
make check
'';
}