refactor(scoped): fix directory structure

This commit is contained in:
matt1432 2025-02-18 16:04:26 -05:00
parent 13453f6839
commit 7b65696436
14 changed files with 12 additions and 12 deletions
scopedPackages/mpv-scripts/pointer-event

View file

@ -0,0 +1,22 @@
{
# 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;
meta = {
license = lib.licenses.gpl2;
homepage = "https://github.com/christoph-heinrich/mpv-pointer-event";
description = ''
Mouse/Touch input event detection for mpv.
'';
};
}