···67stdenvNoCC.mkDerivation rec {
8 pname = "raycast";
9- version = "1.53.2";
1011 src = fetchurl {
12- # https://github.com/NixOS/nixpkgs/pull/223495
13- # official download API: https://api.raycast.app/v2/download
14- # this returns an AWS CloudFront signed URL with expiration timestamp and signature
15- # the returned URL will always be the latest Raycast which might result in an impure derivation
16- # the package maintainer created a repo (https://github.com/stepbrobd/raycast-overlay)
17- # to host GitHub Actions to periodically check for updates
18- # and re-release the `.dmg` file to Internet Archive (https://archive.org/details/raycast)
19- url = "https://archive.org/download/raycast/raycast-${version}.dmg";
20- sha256 = "sha256-e2UGS1LSBj0xZu0gWlb8SiXhx1sZzcZDOGPhg6ziI9c=";
21 };
2223 dontPatch = true;