···6677stdenvNoCC.mkDerivation rec {
88 pname = "raycast";
99- version = "1.53.2";
99+ version = "1.53.3";
10101111 src = fetchurl {
1212- # https://github.com/NixOS/nixpkgs/pull/223495
1313- # official download API: https://api.raycast.app/v2/download
1414- # this returns an AWS CloudFront signed URL with expiration timestamp and signature
1515- # the returned URL will always be the latest Raycast which might result in an impure derivation
1616- # the package maintainer created a repo (https://github.com/stepbrobd/raycast-overlay)
1717- # to host GitHub Actions to periodically check for updates
1818- # and re-release the `.dmg` file to Internet Archive (https://archive.org/details/raycast)
1919- url = "https://archive.org/download/raycast/raycast-${version}.dmg";
2020- sha256 = "sha256-e2UGS1LSBj0xZu0gWlb8SiXhx1sZzcZDOGPhg6ziI9c=";
1212+ name = "Raycast.dmg";
1313+ url = "https://releases.raycast.com/releases/${version}/download?build=universal";
1414+ sha256 = "sha256-FHCNySTtP7Dxa2UAlYoHD4u5ammLuhOQKC3NGpxcyYo=";
2115 };
22162317 dontPatch = true;