a3fe61586c
* Removed the KDE version number from all expressions except the top-level default.nix. This makes it easier to upgrade. * Deleted the old l10n versions since there doesn't seem to be a good reason to keep them around. * Don't use replaceChars (slow!) but do the name sanitization in l10n-manifest.sh. svn path=/nixpkgs/trunk/; revision=25760
18 lines
375 B
Nix
18 lines
375 B
Nix
{ kde, cmake, qt4, perl, automoc4, kdelibs }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake qt4 perl kdelibs automoc4 ];
|
|
|
|
#TODO: working backend: speechd or opentts
|
|
meta = {
|
|
description = "Text-to-speech synthesis daemon";
|
|
kde = {
|
|
name = "jovie";
|
|
module = "kdeaccessibility";
|
|
version = "0.6.0";
|
|
versionFile = "jovie/jovie/main.cpp";
|
|
};
|
|
};
|
|
}
|
|
|