typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / pkgs / os-specific / darwin / grandperspective / default.nix
blob0d57d4f277144988c0628e9034ac10f0f65c5c80
1 { stdenv, lib, fetchurl, undmg }:
3 stdenv.mkDerivation (finalAttrs: {
4   version = "3.4.1";
5   pname = "grandperspective";
7   src = fetchurl {
8     inherit (finalAttrs) version;
9     url = "mirror://sourceforge/grandperspectiv/GrandPerspective-${lib.replaceStrings [ "." ] [ "_" ] finalAttrs.version}.dmg";
10     hash = "sha256-iTtvP6iONcfDWJ3qMh+TUJMN+3spwCQ/5S+A307BJCM=";
11   };
13   sourceRoot = "GrandPerspective.app";
14   buildInputs = [ undmg ];
15   installPhase = ''
16     mkdir -p "$out/Applications/GrandPerspective.app";
17     cp -R . "$out/Applications/GrandPerspective.app";
18   '';
20   meta = with lib; {
21     description = "Open-source macOS application to analyze disk usage";
22     longDescription = ''
23       GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file
24       system. It can help you to manage your disk, as you can easily spot which files and folders take up the most
25       space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to
26       the file's size. Files in the same folder appear together, but their placement is otherwise arbitrary.
27     '';
28     homepage = "https://grandperspectiv.sourceforge.net";
29     license = licenses.gpl2Only;
30     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
31     maintainers = with maintainers; [ eliandoran ];
32     platforms = platforms.darwin;
33   };