sm64coopdx: 1.3.0 -> 1.3.2 + remove update check (#440307)

authored by

Matteo Pacini and committed by
GitHub
413fda74 c8c9952a

+17 -3
+12
pkgs/by-name/sm/sm64coopdx/no-update-check.patch
··· 1 + diff --git i/src/pc/update_checker.c w/src/pc/update_checker.c 2 + index e83414106..53909c075 100644 3 + --- i/src/pc/update_checker.c 4 + +++ w/src/pc/update_checker.c 5 + @@ -127,6 +127,7 @@ void get_version_remote(void) { 6 + } 7 + 8 + void check_for_updates(void) { 9 + + return; 10 + LOADING_SCREEN_MUTEX(loading_screen_set_segment_text("Checking For Updates")); 11 + 12 + get_version_remote();
+5 -3
pkgs/by-name/sm/sm64coopdx/package.nix
··· 37 37 # note: there is a generic builder in pkgs/games/sm64ex/generic.nix that is meant to help build sm64ex and its forks; however sm64coopdx has departed significantly enough in its build that it doesn't make sense to use that other than the baseRom derivation 38 38 stdenv.mkDerivation (finalAttrs: { 39 39 pname = "sm64coopdx"; 40 - version = "1.3.0"; 40 + version = "1.3.2"; 41 41 42 42 src = fetchFromGitHub { 43 43 owner = "coop-deluxe"; 44 44 repo = "sm64coopdx"; 45 - rev = "v1.3"; # it seems coopdx has taken on some stylistic versioning... 46 - hash = "sha256-ssbvNnBBxahzJRIX5Vhze+Nfh3ADoy+NrUIF2RZHye8="; 45 + rev = "v1.3.2"; 46 + hash = "sha256-FHH3+pGowkT8asDmU9qxPNDKy4VPKlkA0X7e4gnX9KY="; 47 47 }; 48 + 49 + patches = [ ./no-update-check.patch ]; 48 50 49 51 nativeBuildInputs = [ makeWrapper ]; 50 52