biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / appcleaner / default.nix
blob62d9e2b1116fa92b8d5151951a475f274b623ce7
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , unzip
5 }:
6 stdenvNoCC.mkDerivation (finalAttrs: {
7   pname = "appcleaner";
8   version = "3.6.8";
10   src = fetchurl {
11     url = "https://freemacsoft.net/downloads/AppCleaner_${finalAttrs.version}.zip";
12     hash = "sha256-4BL3KUQkc8IOfM4zSwAYJSHktmcupoGzSTGxgP6z1r4=";
13   };
14   dontUnpack = true;
16   nativeBuildInputs = [ unzip ];
18   installPhase = ''
19     runHook preInstall
21     mkdir -p $out/Applications
22     unzip -d $out/Applications $src
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Uninstall unwanted apps";
29     homepage = "https://freemacsoft.net/appcleaner";
30     license = licenses.unfree;
31     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
32     maintainers = with maintainers; [ emilytrau ];
33     platforms = platforms.darwin;
34   };