mpvScripts.mpv-osc-tethys: init at 0-unstable-2024-08-19

This commit is contained in:
luftmensch-luftmensch 2024-08-19 12:46:04 +02:00
parent 0a810476ad
commit d7eb7d3cb8
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

View File

@ -113,6 +113,7 @@ let
mpv-cheatsheet = callPackage ./mpv-cheatsheet.nix { };
mpv-notify-send = callPackage ./mpv-notify-send.nix { };
mpv-osc-modern = callPackage ./mpv-osc-modern.nix { };
mpv-osc-tethys = callPackage ./mpv-osc-tethys.nix { };
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { };
mpv-slicing = callPackage ./mpv-slicing.nix { };
mpv-webm = callPackage ./mpv-webm.nix { };

View File

@ -0,0 +1,26 @@
{
lib,
buildLua,
fetchFromGitHub,
}:
buildLua (finalAttrs: {
pname = "mpv-osc-tethys";
version = "0-unstable-2024-08-19";
scriptPath = "osc_tethys.lua";
extraScripts = [ "mpv_thumbnail_script_server.lua" ];
src = fetchFromGitHub {
owner = "Zren";
repo = "mpv-osc-tethys";
rev = "c4167f88a0e9944738419e90a71f1f80fba39ccb";
hash = "sha256-eAY+ZUuOxPJiNCuL7lqMBU4iURCMz12LQdfaYj4WFQc=";
};
meta = {
description = "OSC UI replacement for MPV with icons from the bomi video player";
homepage = "https://github.com/Zren/mpv-osc-tethys";
license = lib.licenses.unfree; # no license specified
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
};
})