summary refs log tree commit diff
path: root/pkgs/tools/misc/wacomtablet
diff options
context:
space:
mode:
authorTom Hall <tahall256@protonmail.ch>2019-09-14 22:23:16 +0100
committerTom Hall <tahall256@protonmail.ch>2019-09-15 15:13:37 +0100
commit0d7536764375fa9c64160dbf445caa5cabaf979d (patch)
treeb4ae21c80e325db9977d4bb6ff39a8592bb8ee86 /pkgs/tools/misc/wacomtablet
parent44bc65afb89d1180a0e7fa6849be78a39ab03ad5 (diff)
downloadnixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.tar
nixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.tar.gz
nixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.tar.bz2
nixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.tar.lz
nixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.tar.xz
nixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.tar.zst
nixpkgs-0d7536764375fa9c64160dbf445caa5cabaf979d.zip
wacomtablet: init at 3.2.0
Diffstat (limited to 'pkgs/tools/misc/wacomtablet')
-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 00000000000..d0fbcecf027
--- /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;
+  };
+}