grandperspective: remove `with lib;`

Changed files
+5 -5
pkgs
by-name
gr
grandperspective
+5 -5
pkgs/by-name/gr/grandperspective/package.nix
···
'';
});
-
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
···
'';
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;
};
})