lol
1{ mkDerivation
2, lib
3, extra-cmake-modules
4, kdoctools
5, ki18n
6, kiconthemes
7, knotifications
8, kxmlgui
9, kwindowsystem
10, phonon
11, libXtst
12, libXt
13}:
14
15mkDerivation {
16 pname = "kmousetool";
17 nativeBuildInputs = [ extra-cmake-modules kdoctools ];
18 buildInputs = [
19 ki18n
20 kiconthemes
21 knotifications
22 kxmlgui
23 kwindowsystem
24 phonon
25 libXtst
26 libXt
27 ];
28 meta = {
29 homepage = "https://github.com/KDE/kmousetool";
30 description = "Program that clicks the mouse for you";
31 mainProgram = "kmousetool";
32 license = with lib.licenses; [ gpl2Plus fdl12Plus ];
33 maintainers = [ lib.maintainers.jayesh-bhoot ];
34 };
35}
36