summary refs log tree commit diff
path: root/pkgs/tools/misc/wacomtablet/default.nix
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-10-12 00:51:55 +0200
committerJan Tojnar <jtojnar@gmail.com>2019-10-12 00:51:55 +0200
commite2e3861d6b57a53fd7774a7c31d0295bbd256930 (patch)
treef0f8fb922a439ae239d522ac79bd40d80efd234f /pkgs/tools/misc/wacomtablet/default.nix
parenta7c52c451e541514fe324bec2916758c031d3af8 (diff)
parent6c8aed6391a5e9f69cb59792aed58c5f33650275 (diff)
Merge branch 'staging-next' into staging
Diffstat (limited to 'pkgs/tools/misc/wacomtablet/default.nix')
-rw-r--r--pkgs/tools/misc/wacomtablet/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/misc/wacomtablet/default.nix b/pkgs/tools/misc/wacomtablet/default.nix
new file mode 100644
index 0000000000000..d0fbcecf0270a
--- /dev/null
+++ b/pkgs/tools/misc/wacomtablet/default.nix
@@ -0,0 +1,30 @@
+{ lib, mkDerivation, fetchurl, extra-cmake-modules, qtx11extras,
+  plasma-workspace, libwacom, xf86_input_wacom
+}:
+
+mkDerivation rec {
+  pname = "wacomtablet";
+  version = "3.2.0";
+  src = fetchurl {
+    url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
+    sha256 = "197pwpl87gqlnza36bp68jvw8ww25znk08acmi8bpz7n84xfc368";
+  };
+
+  nativeBuildInputs = [ extra-cmake-modules ];
+  buildInputs = [
+    qtx11extras plasma-workspace
+    libwacom xf86_input_wacom
+  ];
+
+  meta = {
+    description = "KDE Configuration Module for Wacom Graphics Tablets";
+    longDescription = ''
+      This module implements a GUI for the Wacom Linux Drivers and extends it
+      with profile support to handle different button / pen layouts per profile.
+    '';
+    homepage = https://cgit.kde.org/wacomtablet.git/about/;
+    license = lib.licenses.gpl2;
+    maintainers = [ lib.maintainers.Thra11 ];
+    platforms = lib.platforms.linux;
+  };
+}