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

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