summary refs log tree commit diff
path: root/pkgs/applications/audio/espeak/default.nix
blob: 675f31b478ce301a547c48dc854eeb63cb9c9097 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, stdenv, fetchurl, unzip, portaudio }:

stdenv.mkDerivation rec {
  name = "espeak-1.48.04";

  src = fetchurl {
    url = "mirror://sourceforge/espeak/${name}-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
  '' + (if portaudio.api_version == 19 then ''
    cp src/portaudio19.h src/portaudio.h
  '' else "");

  configurePhase = ''
    cd src
    makeFlags="PREFIX=$out DATADIR=$out/share/espeak-data"
  '';

  meta = with lib; {
    description = "Compact open source software speech synthesizer";
    homepage = "http://espeak.sourceforge.net/";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
  };
}