17 lines
268 B
Nix
17 lines
268 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
libwacom,
|
|
xf86_input_wacom,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "wacomtablet";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
libwacom
|
|
xf86_input_wacom
|
|
];
|
|
meta.mainProgram = "kde_wacom_tabletfinder";
|
|
}
|