15 lines
312 B
Nix
15 lines
312 B
Nix
|
{ kde, cmake, kdelibs, qt4, perl, automoc4, kdebase_workspace }:
|
||
|
|
||
|
kde.package {
|
||
|
buildInputs = [ cmake qt4 perl kdelibs automoc4 kdebase_workspace ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE remote control";
|
||
|
kde = {
|
||
|
name = "kremotecontrol";
|
||
|
module = "kdeutils";
|
||
|
version = "4.5.4";
|
||
|
};
|
||
|
};
|
||
|
}
|