Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
xorgproto,
|
|
libX11,
|
|
libXext,
|
|
libXi,
|
|
libXinerama,
|
|
libXrandr,
|
|
libXrender,
|
|
ncurses,
|
|
pixman,
|
|
pkg-config,
|
|
udev,
|
|
udevCheckHook,
|
|
utilmacros,
|
|
xorgserver,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xf86-input-wacom";
|
|
version = "1.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxwacom";
|
|
repo = "xf86-input-wacom";
|
|
rev = "xf86-input-wacom-${version}";
|
|
sha256 = "sha256-0eDik4fhsg1HAL6lCZMll/0VAghpzMSHY0RoKxSOIbc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
udevCheckHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXext
|
|
libXi
|
|
libXinerama
|
|
libXrandr
|
|
libXrender
|
|
ncurses
|
|
udev
|
|
utilmacros
|
|
pixman
|
|
xorgproto
|
|
xorgserver
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
|
|
configureFlags = [
|
|
"--with-xorg-module-dir=${placeholder "out"}/lib/xorg/modules"
|
|
"--with-sdkdir=${placeholder "out"}/include/xorg"
|
|
"--with-xorg-conf-dir=${placeholder "out"}/share/X11/xorg.conf.d"
|
|
];
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ moni ];
|
|
description = "Wacom digitizer driver for X11";
|
|
homepage = "https://linuxwacom.sourceforge.net";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux; # Probably, works with other unixes as well
|
|
};
|
|
}
|