Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

32 lines
855 B
Nix

{
lib,
fetchFromGitHub,
unstableGitUpdater,
buildLua,
}:
buildLua {
pname = "mpv-reload";
version = "0-unstable-2024-03-22";
src = fetchFromGitHub {
owner = "4e6";
repo = "mpv-reload";
rev = "1a6a9383ba1774708fddbd976e7a9b72c3eec938";
hash = "sha256-BshxCjec/UNGyiC0/g1Rai2NvG2qOIHXDDEUYwwdij0=";
};
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Manual & automatic reloading of videos";
longDescription = ''
This script adds reloading of videos, automatically on timers (when stuck
buffering etc.) or manually on keybinds, to help with cases where a stream
is not loading further due to a network or remote issue.
'';
homepage = "https://github.com/4e6/mpv-reload";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nicoo ];
};
}