Commit 5dbb64eb authored by Lin Xianyi's avatar Lin Xianyi
Browse files

mpvScripts.smartskip: init at 0-unstable-2023-11-25

parent 4aad3e8c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -123,6 +123,7 @@ let
      quality-menu = callPackage ./quality-menu.nix { };
      reload = callPackage ./reload.nix { };
      simple-mpv-webui = callPackage ./simple-mpv-webui.nix { };
      smartskip = callPackage ./smartskip.nix { };
      sponsorblock = callPackage ./sponsorblock.nix { };
      sponsorblock-minimal = callPackage ./sponsorblock-minimal.nix { };
      thumbfast = callPackage ./thumbfast.nix { };
+28 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  unstableGitUpdater,
  buildLua,
}:

buildLua {
  pname = "smartskip";
  version = "0-unstable-2023-11-25";

  scriptPath = "scripts/SmartSkip.lua";
  src = fetchFromGitHub {
    owner = "Eisa01";
    repo = "mpv-scripts";
    rev = "48d68283cea47ff8e904decc9003b3abc3e2123e";
    hash = "sha256-95CAKjBRELX2f7oWSHFWJnI0mikAoxhfUphe9k51Qf4=";
  };

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    description = "Automatically or manually skip opening, intro, outro, and preview";
    homepage = "https://github.com/Eisa01/mpv-scripts";
    license = lib.licenses.bsd2;
    maintainers = [ lib.maintainers.iynaix ];
  };
}