biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / reload.nix
blobec9f441f7cfbac7f2be53301b255c5e8d5ad50c8
1 { lib
2 , fetchFromGitHub
3 , unstableGitUpdater
4 , buildLua }:
6 buildLua rec {
7   pname = "mpv-reload";
9   version = "unstable-2024-03-22";
10   src = fetchFromGitHub {
11     owner = "4e6";
12     repo  = pname;
13     rev   = "1a6a9383ba1774708fddbd976e7a9b72c3eec938";
14     hash  = "sha256-BshxCjec/UNGyiC0/g1Rai2NvG2qOIHXDDEUYwwdij0=";
15   };
16   passthru.updateScript = unstableGitUpdater {};
18   meta = {
19     description = "Manual & automatic reloading of videos";
20     longDescription = ''
21       This script adds reloading of videos, automatically on timers (when stuck
22       buffering etc.) or manually on keybinds, to help with cases where a stream
23       is not loading further due to a network or remote issue.
24     '';
25     homepage = "https://github.com/4e6/mpv-reload";
26     license = lib.licenses.mit;
27     maintainers = with lib.maintainers; [ nicoo ];
28   };