chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / airbuddy / default.nix
blob19c1ada4408a7eca5e0061f7f7f8de658f071248
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , _7zz
5 }:
7 stdenvNoCC.mkDerivation (finalAttrs: {
8   pname = "airbuddy";
9   version = "2.7.1";
11   src = fetchurl {
12     name = "AirBuddy.dmg";
13     url = "https://download.airbuddy.app/WebDownload/AirBuddy_v${finalAttrs.version}.dmg";
14     hash = "sha256-z8iy3kIBO+1HDgmWxXmFHArLdw85CLNSMvMFZfEJAp0=";
15   };
17   dontPatch = true;
18   dontConfigure = true;
19   dontBuild = true;
20   dontFixup = true;
22   # AirBuddy.dmg is APFS formatted, unpack with 7zz
23   nativeBuildInputs = [ _7zz ];
25   sourceRoot = "AirBuddy.app";
27   installPhase = ''
28     runHook preInstall
30     mkdir -p $out/Applications/AirBuddy.app
31     cp -R . $out/Applications/AirBuddy.app
33     runHook postInstall
34   '';
36   meta = with lib; {
37     description = "Take Control of Your Wireless Devices on macOS";
38     longDescription = ''
39       Open your AirPods case next to your Mac to see the status right away, just like it works on your iPhone or iPad.
40       AirBuddy lives in your Menu Bar and can also show battery information for your iPhone, iPad, Apple Watch, Mouse, Keyboard, and more.
41     '';
42     homepage = "https://v2.airbuddy.app";
43     changelog = "https://support.airbuddy.app/articles/airbuddy-2-changelog";
44     license = with licenses; [ unfree ];
45     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
46     maintainers = with maintainers; [ stepbrobd ];
47     platforms = [ "aarch64-darwin" "x86_64-darwin" ];
48   };