anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / wacomtablet / default.nix
blob0b815eac39d529745010fca3292a1acca6a09780
1 { lib, mkDerivation, fetchurl, fetchpatch, extra-cmake-modules, qtx11extras,
2   plasma-workspace, libwacom, xf86_input_wacom
3 }:
5 mkDerivation rec {
6   pname = "wacomtablet";
7   version = "3.2.0";
8   src = fetchurl {
9     url = "mirror://kde/stable/wacomtablet/${version}/wacomtablet-${version}.tar.xz";
10     sha256 = "197pwpl87gqlnza36bp68jvw8ww25znk08acmi8bpz7n84xfc368";
11   };
12   patches = [
13     (fetchpatch {
14       url = "https://invent.kde.org/system/wacomtablet/commit/4f73ff02b3efd5e8728b18fcf1067eca166704ee.patch";
15       sha256 = "0185gbh1vywfz8a3wnvncmzdk0dd189my4bzimkbh85rlrqq2nf8";
16     })
17   ];
19   nativeBuildInputs = [ extra-cmake-modules ];
20   buildInputs = [
21     qtx11extras plasma-workspace
22     libwacom xf86_input_wacom
23   ];
25   meta = {
26     description = "KDE Configuration Module for Wacom Graphics Tablets";
27     mainProgram = "kde_wacom_tabletfinder";
28     longDescription = ''
29       This module implements a GUI for the Wacom Linux Drivers and extends it
30       with profile support to handle different button / pen layouts per profile.
31     '';
32     homepage = "https://invent.kde.org/system/wacomtablet";
33     license = lib.licenses.gpl2Plus;
34     maintainers = [ lib.maintainers.Thra11 ];
35     platforms = lib.platforms.linux;
36   };