42 lines
688 B
Nix
42 lines
688 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
extra-cmake-modules,
|
|
kdoctools,
|
|
ki18n,
|
|
kiconthemes,
|
|
knotifications,
|
|
kxmlgui,
|
|
kwindowsystem,
|
|
phonon,
|
|
libXtst,
|
|
libXt,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kmousetool";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
ki18n
|
|
kiconthemes
|
|
knotifications
|
|
kxmlgui
|
|
kwindowsystem
|
|
phonon
|
|
libXtst
|
|
libXt
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/KDE/kmousetool";
|
|
description = "Program that clicks the mouse for you";
|
|
mainProgram = "kmousetool";
|
|
license = with lib.licenses; [
|
|
gpl2Plus
|
|
fdl12Plus
|
|
];
|
|
maintainers = [ lib.maintainers.jayesh-bhoot ];
|
|
};
|
|
}
|