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

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

  postInstall = ''
    sed -i 's|^dicdir = .*$|dicdir = ${mecab-ipadic}|' "$out/etc/mecabrc"
  '';

  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 ];
  };
}))