about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/mecab/default.nix
blob: f1f9fc6503c81c05b94c99d3353d34417bcae002 (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 ];
  };
}))