depot/pkgs/tools/text/mecab/nodic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
197 B
Nix
Raw Normal View History

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