From ef2ed476e1146e4f7e91b4072090a10fb4ecd706 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 5 Feb 2026 15:38:46 -0500 Subject: [PATCH] mpvScripts: remove meta = with lib; Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/mp/mpv/scripts/cut.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mp/mpv/scripts/cut.nix b/pkgs/by-name/mp/mpv/scripts/cut.nix index 592afadcb1e5..d5d59b14bea6 100644 --- a/pkgs/by-name/mp/mpv/scripts/cut.nix +++ b/pkgs/by-name/mp/mpv/scripts/cut.nix @@ -29,10 +29,10 @@ stdenvNoCC.mkDerivation { passthru.scriptName = "cut.lua"; - meta = with lib; { + meta = { description = "An mpv plugin for cutting videos incredibly quickly"; homepage = "https://github.com/familyfriendlymikey/mpv-cut"; - license = licenses.unfree; # the repository doesn't have a license - maintainers = with maintainers; [ ncfavier ]; + license = lib.licenses.unfree; # the repository doesn't have a license + maintainers = with lib.maintainers; [ ncfavier ]; }; }