Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
1000 B
Nix
46 lines
1000 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
unzip,
|
|
portaudio,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "espeak";
|
|
version = "1.48.04";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/espeak/espeak-${version}-source.zip";
|
|
sha256 = "0n86gwh9pw0jqqpdz7mxggllfr8k0r7pc67ayy7w5z6z79kig6mz";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
buildInputs = [ portaudio ];
|
|
|
|
patches = [
|
|
./gcc6.patch
|
|
];
|
|
|
|
prePatch = ''
|
|
sed -e s,/bin/ln,ln,g -i src/Makefile
|
|
sed -e 's,^CXXFLAGS=-O2,CXXFLAGS=-O2 -D PATH_ESPEAK_DATA=\\\"$(DATADIR)\\\",' -i src/Makefile
|
|
''
|
|
+ (lib.optionalString (portaudio.api_version == 19) ''
|
|
cp src/portaudio19.h src/portaudio.h
|
|
'');
|
|
|
|
configurePhase = ''
|
|
cd src
|
|
makeFlags="PREFIX=$out DATADIR=$out/share/espeak-data"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Compact open source software speech synthesizer";
|
|
mainProgram = "espeak";
|
|
homepage = "https://espeak.sourceforge.net/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|