nixpkgs/pkgs/applications/audio/espeak-ng/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
2.8 KiB
Nix
Raw Normal View History

2022-09-26 15:27:42 +00:00
{ stdenv
, lib
, fetchFromGitHub
2023-11-04 02:40:37 +00:00
, fetchpatch
2022-09-26 15:27:42 +00:00
, autoconf
, automake
, which
, libtool
, pkg-config
, ronn
, substituteAll
2023-05-01 14:24:25 +00:00
, buildPackages
2022-09-26 15:27:42 +00:00
, mbrolaSupport ? true
, mbrola
, pcaudiolibSupport ? true
, pcaudiolib
, sonicSupport ? true
, sonic
, CoreAudio
, AudioToolbox
, AudioUnit
, alsa-plugins
, makeWrapper
2022-09-26 15:27:42 +00:00
}:
2016-09-04 23:44:30 +00:00
stdenv.mkDerivation rec {
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
};
2023-11-04 02:40:37 +00:00
patches = [
# Fix build with Clang 16.
(fetchpatch {
url = "https://github.com/espeak-ng/espeak-ng/commit/497c6217d696c1190c3e8b992ff7b9110eb3bedd.patch";
hash = "sha256-KfzqnRyQfz6nuMKnsHoUzb9rn9h/Pg54mupW1Cr+Zx0=";
})
] ++ lib.optionals mbrolaSupport [
2020-07-18 09:57:39 +00:00
# Hardcode correct mbrola paths.
(substituteAll {
src = ./mbrola.patch;
inherit mbrola;
})
];
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
++ lib.optionals stdenv.isDarwin [
CoreAudio
AudioToolbox
AudioUnit
];
2016-09-04 23:44:30 +00:00
# touch ChangeLog to avoid below error on darwin:
# Makefile.am: error: required file './ChangeLog.md' not found
preConfigure = lib.optionalString stdenv.isDarwin ''
touch ChangeLog
'' + ''
./autogen.sh
'';
2016-09-04 23:44:30 +00:00
2020-07-18 09:57:39 +00:00
configureFlags = [
"--with-mbrola=${if mbrolaSupport then "yes" else "no"}"
];
2023-05-01 14:24:25 +00:00
# ref https://github.com/void-linux/void-packages/blob/3cf863f894b67b3c93e23ac7830ca46b697d308a/srcpkgs/espeak-ng/template#L29-L31
postConfigure = lib.optionalString (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
substituteInPlace Makefile \
--replace 'ESPEAK_DATA_PATH=$(CURDIR) src/espeak-ng' 'ESPEAK_DATA_PATH=$(CURDIR) ${lib.getExe buildPackages.espeak-ng}' \
--replace 'espeak-ng-data/%_dict: src/espeak-ng' 'espeak-ng-data/%_dict: ${lib.getExe buildPackages.espeak-ng}' \
--replace '../src/espeak-ng --compile' "${lib.getExe buildPackages.espeak-ng} --compile"
'';
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
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;
};
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;
mainProgram = "espeak-ng";
2016-09-04 23:44:30 +00:00
};
}