nixos-configs/scopedPackages/mpv-scripts/persist-properties/default.nix

23 lines
444 B
Nix
Raw Permalink Normal View History

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,
mkVersion,
mpv-persist-properties-src,
...
2023-12-16 21:51:43 -05:00
}:
buildLua {
pname = "persist-properties";
version = mkVersion mpv-persist-properties-src;
2023-12-16 21:51:43 -05: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
}