2010-02-10 16:06:50 +01:00
|
|
|
{stdenv, fetchurl, lib, cmake, qt4, perl, alsaLib, libXi, libXtst, kdelibs, automoc4, phonon}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-06-04 13:13:47 +02:00
|
|
|
name = "kdeaccessibility-4.4.4";
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-06-04 13:13:47 +02:00
|
|
|
url = mirror://kde/stable/4.4.4/src/kdeaccessibility-4.4.4.tar.bz2;
|
|
|
|
sha256 = "0v3fbm7wp42fnyxzpk1vlp95z4jn9rf56i075p8g2xvz6gxxgh30";
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
2010-02-14 23:19:15 +01:00
|
|
|
# Missing: speechd, I was too lazy to implement this
|
2010-02-10 16:06:50 +01:00
|
|
|
buildInputs = [ cmake qt4 perl alsaLib libXi libXtst kdelibs automoc4 phonon ];
|
|
|
|
meta = {
|
|
|
|
description = "KDE accessibility tools";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
|
|
|
}
|