From 0cb7e95fcf0762aaf68cd41fb6ce52d9cde5f691 Mon Sep 17 00:00:00 2001 From: Dimitar Nestorov <8790386+dimitarnestorov@users.noreply.github.com> Date: Sat, 28 Dec 2024 18:11:37 +0200 Subject: [PATCH] grandperspective: remove `with lib;` --- pkgs/by-name/gr/grandperspective/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/gr/grandperspective/package.nix b/pkgs/by-name/gr/grandperspective/package.nix index d33d9b1a56d9..6a9f812a12fe 100644 --- a/pkgs/by-name/gr/grandperspective/package.nix +++ b/pkgs/by-name/gr/grandperspective/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }); - meta = with lib; { + meta = { description = "Open-source macOS application to analyze disk usage"; longDescription = '' GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file @@ -59,13 +59,13 @@ stdenv.mkDerivation (finalAttrs: { ''; mainProgram = "grandperspective"; homepage = "https://grandperspectiv.sourceforge.net"; - license = licenses.gpl2Only; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + maintainers = with lib.maintainers; [ eliandoran DimitarNestorov ]; - platforms = platforms.darwin; + platforms = lib.platforms.darwin; }; })