biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / chapterskip.nix
blob9d0c7dafc1dbf3fec5989b676a9a24020effd3c9
1 { lib
2 , fetchFromGitHub
3 , unstableGitUpdater
4 , buildLua }:
6 buildLua {
7   pname = "chapterskip";
9   version = "unstable-2022-09-08";
10   src = fetchFromGitHub {
11     owner = "po5";
12     repo  = "chapterskip";
13     rev   = "b26825316e3329882206ae78dc903ebc4613f039";
14     hash  = "sha256-OTrLQE3rYvPQamEX23D6HttNjx3vafWdTMxTiWpDy90=";
15   };
16   passthru.updateScript = unstableGitUpdater {};
18   meta = {
19     description = "Automatically skips chapters based on title";
20     longDescription = ''
21     MPV script that skips chapters based on their title, categorized using regexes.
22     The set of skipped categories can be configured globally, or by an auto-profile.
23     '';
24     homepage = "https://github.com/po5/chapterskip";
25     license = lib.licenses.unfree;  # https://github.com/po5/chapterskip/issues/10
26     maintainers = with lib.maintainers; [ nicoo ];
27   };