3
0
Fork 0
forked from mirrors/nixpkgs

espeak-ng: enable on darwin

This commit is contained in:
Mario Rodas 2020-12-27 04:25:00 -05:00
parent f88620ce75
commit 2cc63fa4ca

View file

@ -21,15 +21,16 @@ stdenv.mkDerivation rec {
preConfigure = "./autogen.sh";
postInstall = ''
postInstall = lib.optionalString stdenv.isLinux ''
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
'';
meta = with stdenv.lib; {
description = "Open source speech synthesizer that supports over 70 languages, based on eSpeak";
homepage = src.meta.homepage;
homepage = "https://github.com/espeak-ng/espeak-ng";
changelog = "https://github.com/espeak-ng/espeak-ng/blob/${version}/CHANGELOG.md";
license = licenses.gpl3;
maintainers = with maintainers; [ aske ];
platforms = platforms.linux;
platforms = platforms.all;
};
}