Unverified Commit 0cb7e95f authored by Dimitar Nestorov's avatar Dimitar Nestorov
Browse files

grandperspective: remove `with lib;`

parent 0bc3a893
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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;
  };

})