forked from mirrors/nixpkgs
* Updated kdeaccessibility.
svn path=/nixpkgs/branches/kde-4.7/; revision=28001
This commit is contained in:
parent
2d4c4ae1bd
commit
d3df8a3085
|
@ -1,13 +0,0 @@
|
||||||
{ kde, cmake, qt4, perl, automoc4, kdelibs }:
|
|
||||||
|
|
||||||
kde.package {
|
|
||||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "KDE Accessibility color schemes";
|
|
||||||
kde = {
|
|
||||||
name = "ColorSchemes";
|
|
||||||
module = "kdeaccessibility";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ kde, cmake, qt4, perl, automoc4, kdelibs }:
|
|
||||||
|
|
||||||
kde.package {
|
|
||||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "KDE mono icon theme";
|
|
||||||
kde = {
|
|
||||||
name = "IconThemes";
|
|
||||||
module = "kdeaccessibility";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ kde, cmake, qt4, perl, automoc4, kdelibs }:
|
{ kde, cmake, qt4, kdelibs, automoc4, phonon }:
|
||||||
|
|
||||||
kde.package {
|
kde.package {
|
||||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 ];
|
buildInputs = [ cmake qt4 kdelibs automoc4 phonon ];
|
||||||
|
|
||||||
#TODO: working backend: speechd or opentts
|
#TODO: working backend: speechd or opentts
|
||||||
meta = {
|
meta = {
|
||||||
|
|
14
pkgs/desktops/kde-4.7/accessibility/kaccessible.nix
Normal file
14
pkgs/desktops/kde-4.7/accessibility/kaccessible.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ kde, cmake, qt4, kdelibs, automoc4, phonon }:
|
||||||
|
|
||||||
|
kde.package {
|
||||||
|
buildInputs = [ cmake qt4 kdelibs automoc4 phonon ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Bridge that provides accessibility services to applications";
|
||||||
|
kde = {
|
||||||
|
name = "kaccessible";
|
||||||
|
module = "kdeaccessibility";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ kde, cmake, qt4, perl, automoc4, kdelibs }:
|
{ kde, cmake, qt4, kdelibs, automoc4, phonon }:
|
||||||
|
|
||||||
kde.package {
|
kde.package {
|
||||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 ];
|
buildInputs = [ cmake qt4 kdelibs automoc4 phonon ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Screen magnifier for KDE";
|
description = "Screen magnifier for KDE";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ kde, cmake, qt4, perl, automoc4, kdelibs, libXtst }:
|
{ kde, cmake, qt4, kdelibs, automoc4, phonon, libXtst }:
|
||||||
|
|
||||||
kde.package {
|
kde.package {
|
||||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 libXtst ];
|
buildInputs = [ cmake qt4 kdelibs automoc4 phonon libXtst ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A program that clicks the mouse for you";
|
description = "A program that clicks the mouse for you";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ kde, cmake, qt4, perl, automoc4, kdelibs }:
|
{ kde, cmake, qt4, kdelibs, automoc4, phonon }:
|
||||||
|
|
||||||
kde.package {
|
kde.package {
|
||||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 ];
|
buildInputs = [ cmake qt4 kdelibs automoc4 phonon ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A type-and-say front end for speech synthesizers";
|
description = "A type-and-say front end for speech synthesizers";
|
||||||
|
@ -12,4 +12,3 @@ kde.package {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,16 +87,15 @@ recurseIntoAttrs rec {
|
||||||
|
|
||||||
kdemultimedia = callPackage ./multimedia.nix { };
|
kdemultimedia = callPackage ./multimedia.nix { };
|
||||||
|
|
||||||
/*
|
|
||||||
kdeaccessibility = combinePkgs "kdeaccessibility" {
|
kdeaccessibility = combinePkgs "kdeaccessibility" {
|
||||||
colorSchemes = callPackage ./accessibility/color-schemes.nix { };
|
#jovie = callPackage ./accessibility/jovie.nix { };
|
||||||
iconThemes = callPackage ./accessibility/icon-themes.nix { };
|
|
||||||
jovie = callPackage ./accessibility/jovie.nix { };
|
|
||||||
kmag = callPackage ./accessibility/kmag.nix { };
|
kmag = callPackage ./accessibility/kmag.nix { };
|
||||||
kmousetool = callPackage ./accessibility/kmousetool.nix { };
|
kmousetool = callPackage ./accessibility/kmousetool.nix { };
|
||||||
kmouth = callPackage ./accessibility/kmouth.nix { };
|
kmouth = callPackage ./accessibility/kmouth.nix { };
|
||||||
|
kaccessible = callPackage ./accessibility/kaccessible.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
kdeartwork = combinePkgs "kdeartwork" {
|
kdeartwork = combinePkgs "kdeartwork" {
|
||||||
aurorae = callPackage ./artwork/aurorae.nix { };
|
aurorae = callPackage ./artwork/aurorae.nix { };
|
||||||
colorSchemes = callPackage ./artwork/color-schemes.nix { };
|
colorSchemes = callPackage ./artwork/color-schemes.nix { };
|
||||||
|
|
Loading…
Reference in a new issue