electron_32: fix log spam when building on aarch64-linux (#378988)
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / mpv-osc-tethys.nix
blob6f0d6bddb4a43181ebd1d4ef8ab9f42cc44f41ce
2   lib,
3   buildLua,
4   fetchFromGitHub,
5 }:
6 buildLua (finalAttrs: {
7   pname = "mpv-osc-tethys";
8   version = "0-unstable-2024-08-19";
10   scriptPath = "osc_tethys.lua";
11   extraScripts = [ "mpv_thumbnail_script_server.lua" ];
13   src = fetchFromGitHub {
14     owner = "Zren";
15     repo = "mpv-osc-tethys";
16     rev = "c4167f88a0e9944738419e90a71f1f80fba39ccb";
17     hash = "sha256-eAY+ZUuOxPJiNCuL7lqMBU4iURCMz12LQdfaYj4WFQc=";
18   };
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   };