Merge pull request #313685 from DontEatOreo/update-raycast

raycast: 1.74.1 -> 1.75.1

authored by Bernardo Meurer and committed by GitHub 519d6197 a9a0926c

+28 -16
+28 -16
pkgs/os-specific/darwin/raycast/default.nix
··· 1 - { lib 2 - , stdenvNoCC 3 - , fetchurl 4 - , writeShellApplication 5 - , curl 6 - , jq 7 - , common-updater-scripts 8 - , undmg 9 }: 10 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 pname = "raycast"; 13 - version = "1.74.1"; 14 15 src = fetchurl { 16 name = "Raycast.dmg"; 17 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 18 - hash = "sha256-vIhuXZ9FxpWLPoOciyl4Qe0G8vXY+to+CGxp+nRmyp8="; 19 }; 20 21 dontPatch = true; ··· 38 39 passthru.updateScript = lib.getExe (writeShellApplication { 40 name = "raycast-update-script"; 41 - runtimeInputs = [ curl jq common-updater-scripts ]; 42 text = '' 43 set -eo pipefail 44 url=$(curl --silent "https://releases.raycast.com/releases/latest?build=universal") ··· 47 ''; 48 }); 49 50 - meta = with lib; { 51 description = "Control your tools with a few keystrokes"; 52 homepage = "https://raycast.app/"; 53 - license = with licenses; [ unfree ]; 54 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 55 - maintainers = with maintainers; [ lovesegfault stepbrobd donteatoreo ]; 56 - platforms = [ "aarch64-darwin" "x86_64-darwin" ]; 57 }; 58 })
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + writeShellApplication, 6 + curl, 7 + jq, 8 + common-updater-scripts, 9 + undmg, 10 }: 11 12 stdenvNoCC.mkDerivation (finalAttrs: { 13 pname = "raycast"; 14 + version = "1.75.1"; 15 16 src = fetchurl { 17 name = "Raycast.dmg"; 18 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 19 + hash = "sha256-lHGKWj4nn0GsviV83MKgCaQ6HW/CfeP8gg4VXlVXaXg="; 20 }; 21 22 dontPatch = true; ··· 39 40 passthru.updateScript = lib.getExe (writeShellApplication { 41 name = "raycast-update-script"; 42 + runtimeInputs = [ 43 + curl 44 + jq 45 + common-updater-scripts 46 + ]; 47 text = '' 48 set -eo pipefail 49 url=$(curl --silent "https://releases.raycast.com/releases/latest?build=universal") ··· 52 ''; 53 }); 54 55 + meta = { 56 description = "Control your tools with a few keystrokes"; 57 homepage = "https://raycast.app/"; 58 + license = lib.licenses.unfree; 59 + maintainers = with lib.maintainers; [ 60 + lovesegfault 61 + stepbrobd 62 + donteatoreo 63 + ]; 64 + platforms = [ 65 + "aarch64-darwin" 66 + "x86_64-darwin" 67 + ]; 68 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 69 }; 70 })