Adding espeak (and one of the libraries it needs, portaudio)

svn path=/nixpkgs/trunk/; revision=23351
This commit is contained in:
Lluís Batlle i Rossell
2010-08-22 12:08:55 +00:00
parent f093c8fb18
commit 5c8b4043ee
3 changed files with 56 additions and 0 deletions
@@ -0,0 +1,29 @@
{stdenv, fetchurl, unzip, portaudio }:
stdenv.mkDerivation {
name = "espeak-1.44.03";
src = fetchurl {
url = mirror://sourceforge/espeak/espeak-1.44.03-source.zip;
sha256 = "0lnv89xmsq3bax0qpabd0z2adaag7mdl973bkw3gdszidafmfyx4";
};
buildInputs = [ unzip portaudio ];
patchPhase = ''
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
'' + (if portaudio.api_version == 19 then ''
cp src/portaudio19.h src/portaudio.h
'' else "");
configurePhase = ''
cd src
makeFlags="PREFIX=$out"
'';
meta = {
description = "Compact open source software speech synthesizer";
homepage = http://espeak.sourceforge.net/;
license = "GPLv3+";
};
}