nixpkgs/pkgs/tools/text/mecab/nodic.nix
Jonathan Glines 8199cda762 mecab: init at 0.996 (#16175)
Japanese morphological analysis system, used by Anki in particular
2016-06-26 22:47:23 +02:00

9 lines
174 B
Nix

{ stdenv, fetchurl }:
let
mecab-base = import ./base.nix { inherit fetchurl; };
in
stdenv.mkDerivation (mecab-base // {
name = "mecab-nodic-${mecab-base.version}";
})