summary refs log tree commit diff
path: root/pkgs/tools/text/mecab/nodic.nix
blob: be9003623e05e07eca2dcdcbf8c99269393e8245 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ stdenv, fetchurl }:

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