From cec00a0483e28bd2c2c2bdcbdea60ade0eb90926 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 13 Apr 2025 21:37:53 +0300 Subject: [PATCH] gnomeExtensions.easyScreenCast: no with lib; in meta --- pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix b/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix index c0ce09fc875e..d3810a4470af 100644 --- a/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix +++ b/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.extensionUuid = "EasyScreenCast@iacopodeenosee.gmail.com"; - meta = with lib; { + meta = { description = "Simplifies the use of the video recording function integrated in gnome shell"; homepage = "https://github.com/EasyScreenCast/EasyScreenCast"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux; }; })