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

57 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, autoconf, automake, which, libtool, pkg-config
2020-07-18 10:57:39 +01:00
, ronn, substituteAll
, mbrolaSupport ? true, mbrola
2016-09-05 00:44:30 +01:00
, pcaudiolibSupport ? true, pcaudiolib
, sonicSupport ? true, sonic }:
stdenv.mkDerivation rec {
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
};
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
++ lib.optional pcaudiolibSupport pcaudiolib
2016-09-05 00:44:30 +01:00
++ lib.optional sonicSupport sonic;
preConfigure = "./autogen.sh";
2020-07-18 10:57:39 +01:00
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;
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
'';
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
};
}