about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kmousetool.nix
blob: 4bac765dc4b9a4811b256cf1cfc91a37e0c2b850 (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
{ 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";
    license = with lib.licenses; [ gpl2Plus fdl12Plus ];
    maintainers = [ lib.maintainers.jayesh-bhoot ];
  };
}