nixos-configs/scopedPackages/mpv-scripts/pointer-event/default.nix

23 lines
408 B
Nix
Raw Permalink Normal View History

{
2025-02-18 15:19:08 -05:00
# nix build inputs
lib,
buildLua,
mkVersion,
mpv-pointer-event-src,
...
}:
buildLua {
pname = "pointer-event";
version = mkVersion mpv-pointer-event-src;
src = mpv-pointer-event-src;
2025-02-18 15:19:08 -05:00
meta = {
license = lib.licenses.gpl2;
homepage = "https://github.com/christoph-heinrich/mpv-pointer-event";
description = ''
Mouse/Touch input event detection for mpv.
'';
};
}