Merge pull request #184981 from figsoda/update-fishfight

jumpy: rename from fishfight, 0.4.2 -> 0.4.3

authored by figsoda and committed by GitHub f3502e14 9a498e8e

+7 -6
+5 -5
pkgs/games/fishfight/default.nix pkgs/games/jumpy/default.nix
··· 13 13 }: 14 14 15 15 rustPlatform.buildRustPackage rec { 16 - pname = "fishfight"; 17 - version = "0.4.2"; 16 + pname = "jumpy"; 17 + version = "0.4.3"; 18 18 19 19 src = fetchFromGitHub { 20 - owner = "fishfight"; 20 + owner = "fishfolks"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-q1Hh4P/huoFuW/+Mb9yKUMKaky1RshGpjrObBHRCk+8="; 23 + sha256 = "sha256-01zhiQi6v/8ZajsdBU+4hKUCj+PRJ/vUHluOIzy/Gi8="; 24 24 }; 25 25 26 - cargoSha256 = "sha256-PEGK95eXIHv2sxSwUU4345KtxDyRJn/+aEiJIDmkq6Y="; 26 + cargoSha256 = "sha256-AXaGuRqSFiq+Uiy+UaqPdPVyDhCogC64KZZ0Ah1Yo7A="; 27 27 28 28 nativeBuildInputs = lib.optionals stdenv.isLinux [ 29 29 pkg-config
+1
pkgs/top-level/aliases.nix
··· 423 423 firefox-wrapper = throw "'firefox-wrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22 424 424 firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09 425 425 fish-foreign-env = throw "fish-foreign-env has been replaced with fishPlugins.foreign-env"; # Added 2020-12-29, modified 2021-01-10 426 + fishfight = jumpy; # Added 2022-08-03 426 427 flameGraph = throw "'flameGraph' has been renamed to/replaced by 'flamegraph'"; # Converted to throw 2022-02-22 427 428 flashplayer-standalone-debugger = throw "flashplayer-standalone-debugger has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 428 429 flashplayer-standalone = throw "flashplayer-standalone has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07
+1 -1
pkgs/top-level/all-packages.nix
··· 32519 32519 32520 32520 fish-fillets-ng = callPackage ../games/fish-fillets-ng { }; 32521 32521 32522 - fishfight = callPackage ../games/fishfight { 32522 + jumpy = callPackage ../games/jumpy { 32523 32523 inherit (xorg) libX11 libXi; 32524 32524 inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL; 32525 32525 };