From fc2c0fcab1f8b3d112e6e46fd2c6a447ef6e0cc2 Mon Sep 17 00:00:00 2001 From: nicoo Date: Sun, 9 Mar 2025 15:38:27 +0000 Subject: [PATCH] mpvScripts.twitch-chat: avoid explicit recursion when unnecessary --- pkgs/applications/video/mpv/scripts/twitch-chat.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/twitch-chat.nix b/pkgs/applications/video/mpv/scripts/twitch-chat.nix index 35f369cf54a2..16c7bfb6cf74 100644 --- a/pkgs/applications/video/mpv/scripts/twitch-chat.nix +++ b/pkgs/applications/video/mpv/scripts/twitch-chat.nix @@ -5,7 +5,7 @@ lib, nix-update-script, }: -buildLua (finalAttrs: { +buildLua { pname = "twitch-chat"; version = "0-unstable-2024-06-23"; @@ -34,4 +34,4 @@ buildLua (finalAttrs: { license = lib.licenses.mit; maintainers = [ lib.maintainers.naho ]; }; -}) +}