flite added and added mplayer derivation with esound and new configuration style support (still a mess but works)

svn path=/nixpkgs/trunk/; revision=9326
This commit is contained in:
Marc Weber
2007-09-17 23:24:58 +00:00
parent ef783b3c88
commit 8942d938de
3 changed files with 303 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
args:
args.stdenv.mkDerivation {
name = "flite-1.3-release";
src = args.fetchurl {
url = http://www.speech.cs.cmu.edu/flite/packed/flite-1.3/flite-1.3-release.tar.gz;
sha256 = "12wanxx57bbqgkag54dlqzv6h2kr9053p0z8mkxs0mqy03vja8lj";
};
buildPhase = "
unset buildPhase
ensureDir \$out/lib
buildPhase
";
installPhase = "
ensureDir \$out/share/flite
cp -r bin \$out
";
buildInputs = (with args; []);
meta = {
description = "Flite text to speech engine";
homepage = http://www.speech.cs.cmu.edu/flite/download.html;
license = "BSD as-is";
};
}