biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / disk-inventory-x / default.nix
blob2ed895eeb3d20cfd69ebdd4bd2b7df30f356ad8a
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , undmg
5 }:
6 stdenvNoCC.mkDerivation (finalAttrs: {
7   pname = "disk-inventory-x";
8   version = "1.3";
10   src = fetchurl {
11     url = "https://www.derlien.com/diskinventoryx/downloads/Disk%20Inventory%20X%20${finalAttrs.version}.dmg";
12     sha256 = "1rfqp8ia6ficvqxynn43f1pba4rfmhf61kn2ihysbnjs8c33bbvq";
13   };
14   sourceRoot = ".";
16   nativeBuildInputs = [ undmg ];
18   installPhase = ''
19     runHook preInstall
21     mkdir -p $out/Applications
22     cp -r *.app $out/Applications
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Disk usage utility for Mac OS X";
29     homepage = "https://www.derlien.com";
30     license = licenses.gpl3Plus;
31     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
32     maintainers = with maintainers; [ emilytrau ];
33     platforms = [ "x86_64-darwin" ];
34   };