61 lines
1.9 KiB
Nix
61 lines
1.9 KiB
Nix
{ stdenv, lib, fetchFromGitHub, autoconf, automake, which, libtool, pkg-config
|
|
, ronn, substituteAll
|
|
, mbrolaSupport ? true, mbrola
|
|
, pcaudiolibSupport ? true, pcaudiolib
|
|
, sonicSupport ? true, sonic }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "espeak-ng";
|
|
version = "1.50";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "espeak-ng";
|
|
repo = "espeak-ng";
|
|
rev = version;
|
|
sha256 = "0jkqhf2h94vbqq7mg7mmm23bq372fa7mdk941my18c3vkldcir1b";
|
|
};
|
|
|
|
patches = lib.optionals mbrolaSupport [
|
|
# Hardcode correct mbrola paths.
|
|
(substituteAll {
|
|
src = ./mbrola.patch;
|
|
inherit mbrola;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ autoconf automake which libtool pkg-config ronn ];
|
|
|
|
buildInputs = lib.optional mbrolaSupport mbrola
|
|
++ lib.optional pcaudiolibSupport pcaudiolib
|
|
++ lib.optional sonicSupport sonic;
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
configureFlags = [
|
|
"--with-mbrola=${if mbrolaSupport then "yes" else "no"}"
|
|
];
|
|
|
|
# Current release lacks dependencies on local espeak-ng:
|
|
# cd dictsource && ESPEAK_DATA_PATH=/build/espeak-ng LD_LIBRARY_PATH=../src: ../src/espeak-ng --compile=yue && cd ..
|
|
# bash: line 1: ../src/espeak-ng: No such file or directory
|
|
# Should be fixed in next release: https://github.com/espeak-ng/espeak-ng/pull/1029
|
|
enableParallelBuilding = false;
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
|
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
|
|
'';
|
|
|
|
passthru = {
|
|
inherit mbrolaSupport;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Open source speech synthesizer that supports over 70 languages, based on eSpeak";
|
|
homepage = "https://github.com/espeak-ng/espeak-ng";
|
|
changelog = "https://github.com/espeak-ng/espeak-ng/blob/${version}/CHANGELOG.md";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ aske ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|