biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / kmousetool.nix
blobbedcbb6bc4dc086e5c3a5a2b7cdd5dc2a2a37037
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
15 mkDerivation {
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   };