mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
mpvScripts.mpv-osc-tethys: init at 0-unstable-2024-08-19
This commit is contained in:
parent
0a810476ad
commit
d7eb7d3cb8
@ -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 { };
|
||||
|
26
pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix
Normal file
26
pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix
Normal 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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user