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

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

  src = fetchurl {
    url = "http://www.festvox.org/bard/${name}-current.tar.bz2";
    sha256 = "197cc2a1f045b1666a29a9b5f035b3d676db6db94a4439d99a03b65e551ae2e0";
  };

  buildInputs = [ pkgconfig ];

  configureFlags = ''
    --enable-shared
  '';

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