2023-12-16 21:51:43 -05:00
|
|
|
{
|
2025-02-18 15:19:08 -05:00
|
|
|
# nix build inputs
|
|
|
|
lib,
|
2023-12-16 21:51:43 -05:00
|
|
|
buildLua,
|
2024-06-24 11:38:30 -04:00
|
|
|
mkVersion,
|
2025-02-18 15:19:08 -05:00
|
|
|
eisa-scripts-src,
|
2024-01-01 17:34:49 -05:00
|
|
|
...
|
2023-12-16 21:51:43 -05:00
|
|
|
}:
|
|
|
|
buildLua rec {
|
|
|
|
pname = "undo-redo";
|
2024-06-24 11:38:30 -04:00
|
|
|
version = mkVersion eisa-scripts-src;
|
2023-12-16 21:51:43 -05:00
|
|
|
|
2024-01-01 17:34:49 -05:00
|
|
|
src = eisa-scripts-src;
|
2023-12-16 21:51:43 -05:00
|
|
|
scriptPath = "${src}/scripts/UndoRedo.lua";
|
2025-02-18 15:19:08 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
homepage = "https://github.com/Eisa01/mpv-scripts?tab=readme-ov-file#undoredo";
|
|
|
|
description = ''
|
|
|
|
Accidentally seeked? No worries, simply undo..
|
|
|
|
Undo is not enough to fix your accidental seek? Well now you can redo as well..
|
|
|
|
'';
|
|
|
|
};
|
2023-12-16 21:51:43 -05:00
|
|
|
}
|