chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / grandperspective / default.nix
blob816440ec1155ec6dd7d7146b8a66dc0bf82cbbfa
1 { stdenv, lib, fetchurl, undmg, makeWrapper }:
3 stdenv.mkDerivation (finalAttrs: {
4   version = "3.4.2";
5   pname = "grandperspective";
7   src = fetchurl {
8     inherit (finalAttrs) version;
9     url = "mirror://sourceforge/grandperspectiv/GrandPerspective-${lib.replaceStrings [ "." ] [ "_" ] finalAttrs.version}.dmg";
10     hash = "sha256-ZgyBeQCoixLGCFS8+UFoMilvtswplEC8MzK3BE4ocDg=";
11   };
13   sourceRoot = "GrandPerspective.app";
14   buildInputs = [ undmg ];
15   nativeBuildInputs = [ makeWrapper ];
16   # Create a trampoline script in $out/bin/ because a symlink doesn’t work for
17   # this app.
18   installPhase = ''
19     mkdir -p "$out/Applications/GrandPerspective.app" "$out/bin"
20     cp -R . "$out/Applications/GrandPerspective.app"
21     makeWrapper "$out/Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective" "$out/bin/grandperspective"
22   '';
24   meta = with lib; {
25     description = "Open-source macOS application to analyze disk usage";
26     longDescription = ''
27       GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file
28       system. It can help you to manage your disk, as you can easily spot which files and folders take up the most
29       space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to
30       the file's size. Files in the same folder appear together, but their placement is otherwise arbitrary.
31     '';
32     mainProgram = "grandperspective";
33     homepage = "https://grandperspectiv.sourceforge.net";
34     license = licenses.gpl2Only;
35     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
36     maintainers = with maintainers; [ eliandoran ];
37     platforms = platforms.darwin;
38   };