about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kmousetool.nix
blob: bedcbb6bc4dc086e5c3a5a2b7cdd5dc2a2a37037 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ 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 ];
  };
}