incus: fix container tests from image rename (#360305)
[NixPkgs.git] / pkgs / tools / text / mecab / base.nix
blobea572104238c868b1172b93b9dc9df9e6f3a5bc4
1 { fetchurl, libiconv }:
3 finalAttrs: {
4   version = "0.996";
6   src = fetchurl {
7     url = "https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7cENtOXlicTFaRUE";
8     name = "mecab-${finalAttrs.version}.tar.gz";
9     hash = "sha256-4HMyV4MTW3LmZhRceBu0j62lg9UiT7JJD7bBQDumnFk=";
10   };
12   buildInputs = [ libiconv ];
14   configureFlags = [
15     "--with-charset=utf8"
16   ];
18   # mecab uses several features that have been removed in C++17.
19   # Force the language mode to C++14, so that it can compile with clang 16.
20   makeFlags = [ "CXXFLAGS=-std=c++14" ];
22   doCheck = true;