2022-09-26 15:27:42 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoconf
|
|
|
|
, automake
|
|
|
|
, which
|
|
|
|
, libtool
|
|
|
|
, pkg-config
|
|
|
|
, ronn
|
|
|
|
, substituteAll
|
|
|
|
, mbrolaSupport ? true
|
|
|
|
, mbrola
|
|
|
|
, pcaudiolibSupport ? true
|
|
|
|
, pcaudiolib
|
|
|
|
, sonicSupport ? true
|
|
|
|
, sonic
|
2023-03-23 22:07:12 +00:00
|
|
|
, alsa-plugins
|
|
|
|
, makeWrapper
|
2022-09-26 15:27:42 +00:00
|
|
|
}:
|
2016-09-04 23:44:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "espeak-ng";
|
2023-02-26 12:39:20 +00:00
|
|
|
version = "1.51.1";
|
2016-09-04 23:44:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "espeak-ng";
|
|
|
|
repo = "espeak-ng";
|
2017-12-21 08:58:21 +00:00
|
|
|
rev = version;
|
2023-02-26 12:39:20 +00:00
|
|
|
hash = "sha256-aAJ+k+kkOS6k835mEW7BvgAIYGhUHxf7Q4P5cKO8XTk=";
|
2016-09-04 23:44:30 +00:00
|
|
|
};
|
|
|
|
|
2020-07-18 09:57:39 +00:00
|
|
|
patches = lib.optionals mbrolaSupport [
|
|
|
|
# Hardcode correct mbrola paths.
|
|
|
|
(substituteAll {
|
|
|
|
src = ./mbrola.patch;
|
|
|
|
inherit mbrola;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2023-03-23 22:07:12 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake which libtool pkg-config ronn makeWrapper ];
|
2016-09-04 23:44:30 +00:00
|
|
|
|
2020-07-18 09:57:39 +00:00
|
|
|
buildInputs = lib.optional mbrolaSupport mbrola
|
2022-09-26 15:27:42 +00:00
|
|
|
++ lib.optional pcaudiolibSupport pcaudiolib
|
|
|
|
++ lib.optional sonicSupport sonic;
|
2016-09-04 23:44:30 +00:00
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2020-07-18 09:57:39 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-mbrola=${if mbrolaSupport then "yes" else "no"}"
|
|
|
|
];
|
|
|
|
|
2020-12-27 09:25:00 +00:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2016-09-04 23:44:30 +00:00
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
|
2023-03-23 22:07:12 +00:00
|
|
|
wrapProgram $out/bin/espeak-ng \
|
|
|
|
--set ALSA_PLUGIN_DIR ${alsa-plugins}/lib/alsa-lib
|
2016-09-04 23:44:30 +00:00
|
|
|
'';
|
|
|
|
|
2022-01-08 21:07:05 +00:00
|
|
|
passthru = {
|
|
|
|
inherit mbrolaSupport;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-09-04 23:44:30 +00:00
|
|
|
description = "Open source speech synthesizer that supports over 70 languages, based on eSpeak";
|
2020-12-27 09:25:00 +00:00
|
|
|
homepage = "https://github.com/espeak-ng/espeak-ng";
|
|
|
|
changelog = "https://github.com/espeak-ng/espeak-ng/blob/${version}/CHANGELOG.md";
|
2020-07-18 09:57:39 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2016-09-04 23:44:30 +00:00
|
|
|
maintainers = with maintainers; [ aske ];
|
2020-12-27 09:25:00 +00:00
|
|
|
platforms = platforms.all;
|
2016-09-04 23:44:30 +00:00
|
|
|
};
|
|
|
|
}
|