Skip to content

Commit

Permalink
mpvScripts.mpv-osc-tethys: init at 0-unstable-2024-08-19 (#335785)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds authored Sep 15, 2024
2 parents d109b34 + d7eb7d3 commit 039b72d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/applications/video/mpv/scripts/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ let
mpv-discord = callPackage ./mpv-discord.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 { };
Expand Down
26 changes: 26 additions & 0 deletions pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
})

0 comments on commit 039b72d

Please sign in to comment.