summary refs log tree commit diff
path: root/pkgs/development/libraries/flite/default.nix
blob: 31dad5e255af3634f91c482c9ba1ba80a17e805a (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
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "flite-2.0.0";

  src = fetchurl {
    url = "http://www.festvox.org/flite/packed/flite-2.0/${name}-release.tar.bz2";
    sha256 = "04g4r83jh4cl0irc8bg7njngcah7749956v9s6sh552kzmh3i337";
  };

  patches = [ ./fix-rpath.patch ];

  configureFlags = [ "--enable-shared" ];

  enableParallelBuilding = true;

  meta = {
    description = "A small, fast run-time speech synthesis engine";
    homepage = http://www.festvox.org/flite/;
    license = stdenv.lib.licenses.free;
    platforms = stdenv.lib.platforms.linux;
  };
}