about summary refs log tree commit diff
path: root/pkgs/applications/misc/appcleaner/default.nix
blob: 62d9e2b1116fa92b8d5151951a475f274b623ce7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, stdenvNoCC
, fetchurl
, unzip
}:
stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "appcleaner";
  version = "3.6.8";

  src = fetchurl {
    url = "https://freemacsoft.net/downloads/AppCleaner_${finalAttrs.version}.zip";
    hash = "sha256-4BL3KUQkc8IOfM4zSwAYJSHktmcupoGzSTGxgP6z1r4=";
  };
  dontUnpack = true;

  nativeBuildInputs = [ unzip ];

  installPhase = ''
    runHook preInstall

    mkdir -p $out/Applications
    unzip -d $out/Applications $src

    runHook postInstall
  '';

  meta = with lib; {
    description = "Uninstall unwanted apps";
    homepage = "https://freemacsoft.net/appcleaner";
    license = licenses.unfree;
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    maintainers = with maintainers; [ emilytrau ];
    platforms = platforms.darwin;
  };
})