Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
libsndfile,
|
|
libpulseaudio,
|
|
espeak-ng,
|
|
sonic,
|
|
utf8cpp,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ekho";
|
|
version = "9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hgneng";
|
|
repo = "ekho";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-VYN9tR3BJXd3UA0V5vqQJNItJe1e1knZ+S7tLeaeYYk=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
CXXFLAGS = [
|
|
"-O0"
|
|
"-I${lib.getDev utf8cpp}/include/utf8cpp"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
libsndfile
|
|
libpulseaudio
|
|
espeak-ng
|
|
sonic
|
|
utf8cpp
|
|
];
|
|
|
|
meta = {
|
|
description = "Chinese text-to-speech software";
|
|
homepage = "https://www.eguidedog.net/ekho.php";
|
|
longDescription = ''
|
|
Ekho (余音) is a free, open source and multilingual text-to-speech (TTS)
|
|
software. It supports Cantonese (Chinese dialect spoken in Hong Kong and
|
|
part of Guangdong province), Mandarin (standard Chinese), Zhaoan Hakka
|
|
(a dialect in Taiwan), Tibetan, Ngangien (an ancient Chinese before
|
|
Yuan Dynasty) and Korean (in trial).
|
|
'';
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = [ ];
|
|
mainProgram = "ekho";
|
|
};
|
|
})
|