mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
725d62079c
#257480 added utf8 support but mecab depends on libiconv to convert between charsets. Thus, on MacOS it doesn't works
9 lines
197 B
Nix
9 lines
197 B
Nix
{ stdenv, fetchurl, libiconv }:
|
|
|
|
let
|
|
mecab-base = import ./base.nix { inherit fetchurl libiconv; };
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: ((mecab-base finalAttrs) // {
|
|
pname = "mecab-nodic";
|
|
}))
|