mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
mpvScripts.smartskip: init at 0-unstable-2023-11-25
This commit is contained in:
parent
4aad3e8c77
commit
5dbb64eb04
@ -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
pkgs/applications/video/mpv/scripts/smartskip.nix
Normal file
28
pkgs/applications/video/mpv/scripts/smartskip.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user