2010-02-10 16:06:50 +01:00
|
|
|
{stdenv, fetchurl, lib, cmake, qt4, perl, alsaLib, libXi, libXtst, kdelibs, automoc4, phonon}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-03-31 11:47:34 +02:00
|
|
|
name = "kdeaccessibility-4.4.2";
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-03-31 11:47:34 +02:00
|
|
|
url = mirror://kde/stable/4.4.2/src/kdeaccessibility-4.4.2.tar.bz2;
|
|
|
|
sha256 = "10n08w7x5sna0ilc965yi1041dwm13s5r4fd1valmlx8wcckrj6q";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|