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,
|
|
|
|
mpv-persist-properties-src,
|
2024-01-01 17:34:49 -05:00
|
|
|
...
|
2023-12-16 21:51:43 -05:00
|
|
|
}:
|
|
|
|
buildLua {
|
|
|
|
pname = "persist-properties";
|
2024-06-24 11:38:30 -04:00
|
|
|
version = mkVersion mpv-persist-properties-src;
|
2023-12-16 21:51:43 -05:00
|
|
|
|
2024-05-20 01:17:07 -04:00
|
|
|
src = mpv-persist-properties-src;
|
2025-02-18 15:19:08 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
homepage = "https://github.com/d87/mpv-persist-properties";
|
|
|
|
description = ''
|
|
|
|
Keeps selected property values (like volume) between player sessions.
|
|
|
|
'';
|
|
|
|
};
|
2023-12-16 21:51:43 -05:00
|
|
|
}
|