2017-11-21 02:12:29 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2011-04-08 18:15:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-21 02:12:29 +01:00
|
|
|
name = "flite-2.0.0";
|
2011-04-08 18:15:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-21 02:12:29 +01:00
|
|
|
url = "http://www.festvox.org/flite/packed/flite-2.0/${name}-release.tar.bz2";
|
|
|
|
sha256 = "04g4r83jh4cl0irc8bg7njngcah7749956v9s6sh552kzmh3i337";
|
2011-04-08 18:15:44 +02:00
|
|
|
};
|
|
|
|
|
2017-11-21 02:12:29 +01:00
|
|
|
patches = [ ./fix-rpath.patch ];
|
2011-04-08 18:15:44 +02:00
|
|
|
|
2017-11-21 02:12:29 +01:00
|
|
|
configureFlags = [ "--enable-shared" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2011-04-08 18:15:44 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A small, fast run-time speech synthesis engine";
|
2014-09-11 05:45:57 +02:00
|
|
|
homepage = http://www.festvox.org/flite/;
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.free;
|
2014-09-11 05:45:57 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-04-08 18:15:44 +02:00
|
|
|
};
|
|
|
|
}
|