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 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + writeShellApplication, 6 + curl, 7 + jq, 8 + common-updater-scripts, 9 + undmg, 9 10 }: 10 11 11 12 stdenvNoCC.mkDerivation (finalAttrs: { 12 13 pname = "raycast"; 13 - version = "1.74.1"; 14 + version = "1.75.1"; 14 15 15 16 src = fetchurl { 16 17 name = "Raycast.dmg"; 17 18 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 18 - hash = "sha256-vIhuXZ9FxpWLPoOciyl4Qe0G8vXY+to+CGxp+nRmyp8="; 19 + hash = "sha256-lHGKWj4nn0GsviV83MKgCaQ6HW/CfeP8gg4VXlVXaXg="; 19 20 }; 20 21 21 22 dontPatch = true; ··· 38 39 39 40 passthru.updateScript = lib.getExe (writeShellApplication { 40 41 name = "raycast-update-script"; 41 - runtimeInputs = [ curl jq common-updater-scripts ]; 42 + runtimeInputs = [ 43 + curl 44 + jq 45 + common-updater-scripts 46 + ]; 42 47 text = '' 43 48 set -eo pipefail 44 49 url=$(curl --silent "https://releases.raycast.com/releases/latest?build=universal") ··· 47 52 ''; 48 53 }); 49 54 50 - meta = with lib; { 55 + meta = { 51 56 description = "Control your tools with a few keystrokes"; 52 57 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" ]; 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 ]; 57 69 }; 58 70 })