Skip to content

Commit 039b72d

Browse files
authored
mpvScripts.mpv-osc-tethys: init at 0-unstable-2024-08-19 (#335785)
2 parents d109b34 + d7eb7d3 commit 039b72d

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

pkgs/applications/video/mpv/scripts/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ let
114114
mpv-discord = callPackage ./mpv-discord.nix { };
115115
mpv-notify-send = callPackage ./mpv-notify-send.nix { };
116116
mpv-osc-modern = callPackage ./mpv-osc-modern.nix { };
117+
mpv-osc-tethys = callPackage ./mpv-osc-tethys.nix { };
117118
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { };
118119
mpv-slicing = callPackage ./mpv-slicing.nix { };
119120
mpv-webm = callPackage ./mpv-webm.nix { };
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
lib,
3+
buildLua,
4+
fetchFromGitHub,
5+
}:
6+
buildLua (finalAttrs: {
7+
pname = "mpv-osc-tethys";
8+
version = "0-unstable-2024-08-19";
9+
10+
scriptPath = "osc_tethys.lua";
11+
extraScripts = [ "mpv_thumbnail_script_server.lua" ];
12+
13+
src = fetchFromGitHub {
14+
owner = "Zren";
15+
repo = "mpv-osc-tethys";
16+
rev = "c4167f88a0e9944738419e90a71f1f80fba39ccb";
17+
hash = "sha256-eAY+ZUuOxPJiNCuL7lqMBU4iURCMz12LQdfaYj4WFQc=";
18+
};
19+
20+
meta = {
21+
description = "OSC UI replacement for MPV with icons from the bomi video player";
22+
homepage = "https://github.com/Zren/mpv-osc-tethys";
23+
license = lib.licenses.unfree; # no license specified
24+
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
25+
};
26+
})

0 commit comments

Comments
 (0)