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

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

19 lines
230 B
Nix
Raw Normal View History

{
stdenv,
fetchurl,
libiconv,
}:
let
mecab-base = import ./base.nix { inherit fetchurl libiconv; };
in
2023-09-26 17:56:22 +00:00
stdenv.mkDerivation (
finalAttrs:
(
2023-09-26 17:56:22 +00:00
(mecab-base finalAttrs)
// {
pname = "mecab-nodic";
}
)
)