From a2cb6b674c329c68d79738d2d60bc51f26df68cf Mon Sep 17 00:00:00 2001 From: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com> Date: Mon, 20 May 2024 22:30:11 +0300 Subject: [PATCH] stats: remove `with lib;` from meta --- pkgs/by-name/st/stats/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/st/stats/package.nix b/pkgs/by-name/st/stats/package.nix index 0d8918653254..7706210bec70 100644 --- a/pkgs/by-name/st/stats/package.nix +++ b/pkgs/by-name/st/stats/package.nix @@ -30,16 +30,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "macOS system monitor in your menu bar"; homepage = "https://github.com/exelban/stats"; - license = licenses.mit; + license = lib.licenses.mit; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ emilytrau Enzime donteatoreo ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; })