about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kmousetool.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/kde/kmousetool.nix')
-rw-r--r--nixpkgs/pkgs/applications/kde/kmousetool.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/kde/kmousetool.nix b/nixpkgs/pkgs/applications/kde/kmousetool.nix
new file mode 100644
index 000000000000..4bac765dc4b9
--- /dev/null
+++ b/nixpkgs/pkgs/applications/kde/kmousetool.nix
@@ -0,0 +1,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 ];
+  };
+}
+