nixpkgs/pkgs/development/libraries/flite/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

24 lines
553 B
Nix

{ 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 = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.linux;
};
}