From bc5d5b3dd0677aef708e5993150dfecb301ef041 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 15 Jan 2023 12:59:13 +0200 Subject: [PATCH] grandperspective: init at 3.0.1 --- .../darwin/grandperspective/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/os-specific/darwin/grandperspective/default.nix diff --git a/pkgs/os-specific/darwin/grandperspective/default.nix b/pkgs/os-specific/darwin/grandperspective/default.nix new file mode 100644 index 000000000000..a1156c7cb873 --- /dev/null +++ b/pkgs/os-specific/darwin/grandperspective/default.nix @@ -0,0 +1,34 @@ +{ stdenv, lib, fetchurl, undmg, ... }: + +stdenv.mkDerivation rec { + version = "3.0.1"; + pname = "grandperspective"; + + src = fetchurl { + inherit version; + url = "mirror://sourceforge/grandperspectiv/GrandPerspective-${builtins.replaceStrings [ "." ] [ "_" ] version}.dmg"; + sha256 = "sha256-ZPqrlN9aw5q7656GmmxCnTRBw3lu9n952rIyun8MsiI="; + }; + + sourceRoot = "GrandPerspective.app"; + buildInputs = [ undmg ]; + installPhase = '' + mkdir -p "$out/Applications/GrandPerspective.app"; + cp -R . "$out/Applications/GrandPerspective.app"; + ''; + + meta = with lib; { + 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 + system. It can help you to manage your disk, as you can easily spot which files and folders take up the most + space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to + the file's size. Files in the same folder appear together, but their placement is otherwise arbitrary. + ''; + homepage = "https://grandperspectiv.sourceforge.net"; + license = licenses.gpl2; + maintainers = with maintainers; [ eliandoran ]; + platforms = [ "x86_64-darwin" ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1f46e94edd40..3b872661fb66 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3437,6 +3437,8 @@ with pkgs; goku = callPackage ../os-specific/darwin/goku { }; + grandperspective = callPackage ../os-specific/darwin/grandperspective { }; + grb = callPackage ../applications/misc/grb { }; kerf = kerf_1; /* kerf2 is WIP */