2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoconf, automake, which, libtool, pkg-config
|
2016-09-05 00:44:30 +01:00
|
|
|
, ronn
|
|
|
|
, pcaudiolibSupport ? true, pcaudiolib
|
|
|
|
, sonicSupport ? true, sonic }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "espeak-ng";
|
2019-12-08 06:09:21 +00:00
|
|
|
version = "1.50";
|
2016-09-05 00:44:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "espeak-ng";
|
|
|
|
repo = "espeak-ng";
|
2017-12-21 08:58:21 +00:00
|
|
|
rev = version;
|
2019-12-08 06:09:21 +00:00
|
|
|
sha256 = "0jkqhf2h94vbqq7mg7mmm23bq372fa7mdk941my18c3vkldcir1b";
|
2016-09-05 00:44:30 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake which libtool pkg-config ronn ];
|
2016-09-05 00:44:30 +01:00
|
|
|
|
|
|
|
buildInputs = lib.optional pcaudiolibSupport pcaudiolib
|
|
|
|
++ lib.optional sonicSupport sonic;
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2020-12-27 09:25:00 +00:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2016-09-05 00:44:30 +01:00
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-09-05 00:44:30 +01: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";
|
2016-09-05 00:44:30 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ aske ];
|
2020-12-27 09:25:00 +00:00
|
|
|
platforms = platforms.all;
|
2016-09-05 00:44:30 +01:00
|
|
|
};
|
|
|
|
}
|