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

finalAttrs: {
  version = "0.996";

  src = fetchurl {
    url = "https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7cENtOXlicTFaRUE";
    name = "mecab-${finalAttrs.version}.tar.gz";
    hash = "sha256-4HMyV4MTW3LmZhRceBu0j62lg9UiT7JJD7bBQDumnFk=";
  };

  configureFlags = [
    "--with-charset=utf8"
  ];

  doCheck = true;
}