nixpkgs/pkgs/tools/text/mecab/base.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
353 B
Nix
Raw Normal View History

{ fetchurl }:
2023-09-26 17:56:22 +00:00
finalAttrs: {
version = "0.996";
2023-09-26 17:56:22 +00:00
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"
];
2023-09-26 17:56:22 +00:00
doCheck = true;
}