3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/espeak-ng/default.nix

67 lines
1.5 KiB
Nix
Raw Normal View History

2022-09-26 16:27:42 +01:00
{ stdenv
, lib
, fetchFromGitHub
, autoconf
, automake
, which
, libtool
, pkg-config
, ronn
, substituteAll
, mbrolaSupport ? true
, mbrola
, pcaudiolibSupport ? true
, pcaudiolib
, sonicSupport ? true
, sonic
}:
2016-09-05 00:44:30 +01:00
stdenv.mkDerivation rec {
pname = "espeak-ng";
2022-09-26 16:27:42 +01:00
version = "1.51";
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;
2022-09-26 16:27:42 +01:00
hash = "sha256-KwzMlQ3/JgpNOpuV4zNc0zG9oWEGFbVSJ4bEd3dtD3Y=";
2016-09-05 00:44:30 +01:00
};
2020-07-18 10:57:39 +01:00
patches = lib.optionals mbrolaSupport [
# Hardcode correct mbrola paths.
(substituteAll {
src = ./mbrola.patch;
inherit mbrola;
})
];
nativeBuildInputs = [ autoconf automake which libtool pkg-config ronn ];
2016-09-05 00:44:30 +01:00
2020-07-18 10:57:39 +01:00
buildInputs = lib.optional mbrolaSupport mbrola
2022-09-26 16:27:42 +01:00
++ lib.optional pcaudiolibSupport pcaudiolib
++ lib.optional sonicSupport sonic;
2016-09-05 00:44:30 +01:00
preConfigure = "./autogen.sh";
2020-07-18 10:57:39 +01: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-05 00:44:30 +01:00
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
'';
2022-01-08 21:07:05 +00:00
passthru = {
inherit mbrolaSupport;
};
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";
2020-07-18 10:57:39 +01:00
license = licenses.gpl3Plus;
2016-09-05 00:44:30 +01:00
maintainers = with maintainers; [ aske ];
2020-12-27 09:25:00 +00:00
platforms = platforms.all;
2016-09-05 00:44:30 +01:00
};
}