Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kmousetool.nix
blob4bac765dc4b9a4811b256cf1cfc91a37e0c2b850
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     license = with lib.licenses; [ gpl2Plus fdl12Plus ];
32     maintainers = [ lib.maintainers.jayesh-bhoot ];
33   };