summary refs log tree commit diff
path: root/pkgs/tools/text/mecab/default.nix
blob: 8d11343515d0aa276cb849b3b5d6c220e78086c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, mecab-ipadic, libiconv }:

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

  postInstall = ''
    mkdir -p $out/lib/mecab/dic
    ln -s ${mecab-ipadic} $out/lib/mecab/dic/ipadic
  '';

  meta = with lib; {
    description = "Japanese morphological analysis system";
    homepage = "http://taku910.github.io/mecab";
    license = licenses.bsd3;
    platforms = platforms.unix;
    mainProgram = "mecab";
    maintainers = with maintainers; [ auntie paveloom ];
  };
}))