about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/mecab/ipadic.nix
blob: 991d0735bab277fcd2ceda50cf4cb7064d1303d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, mecab-nodic }:

stdenv.mkDerivation rec {
  pname = "mecab-ipadic";
  version = "2.7.0-20070801";

  src = fetchurl {
    url = https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7MWVlSDBCSXZMTXM;
    name = "mecab-ipadic-2.7.0-20070801.tar.gz";
    sha256 = "08rmkvj0f0x6jq0axrjw2y5nam0mavv6x77dp9v4al0wi1ym4bxn";
  };

  buildInputs = [ mecab-nodic ];

  configurePhase = ''
    ./configure --with-dicdir="$out"
  '';
}