jumpy: 0.8.0 -> 0.12.2 (#377607)

authored by Gaétan Lepage and committed by GitHub 6b33302e 28c1c6e3

+19 -8
+19 -8
pkgs/by-name/ju/jumpy/package.nix
··· 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 makeWrapper, 6 pkg-config, 7 zstd, ··· 14 xorg, 15 }: 16 17 - rustPlatform.buildRustPackage rec { 18 pname = "jumpy"; 19 - version = "0.8.0"; 20 21 src = fetchFromGitHub { 22 owner = "fishfolk"; 23 repo = "jumpy"; 24 - rev = "v${version}"; 25 - sha256 = "sha256-ggePJH2kKJ17aOWRKUnLyolIdSzlc6Axf5Iw74iFfek="; 26 }; 27 28 useFetchCargoVendor = true; 29 - cargoHash = "sha256-hVEpTNTXwOQoxlhOewUvHyfBh+APnx8Fox90CmdMRQ4="; 30 31 nativeBuildInputs = [ 32 makeWrapper ··· 77 meta = { 78 description = "Tactical 2D shooter played by up to 4 players online or on a shared screen"; 79 mainProgram = "jumpy"; 80 - homepage = "https://fishfight.org/"; 81 - changelog = "https://github.com/fishfolk/jumpy/releases/tag/v${version}"; 82 license = with lib.licenses; [ 83 mit # or 84 asl20 85 ]; 86 maintainers = with lib.maintainers; [ figsoda ]; 87 }; 88 - }
··· 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 + fetchpatch2, 6 makeWrapper, 7 pkg-config, 8 zstd, ··· 15 xorg, 16 }: 17 18 + rustPlatform.buildRustPackage (finalAttrs: { 19 pname = "jumpy"; 20 + version = "0.12.2"; 21 22 src = fetchFromGitHub { 23 owner = "fishfolk"; 24 repo = "jumpy"; 25 + tag = "v${finalAttrs.version}"; 26 + hash = "sha256-g/CpSycTCM1i6O7Mir+3huabvr4EXghDApquEUNny8c="; 27 }; 28 29 + # This patch may be removed in the next release 30 + cargoPatches = [ 31 + (fetchpatch2 { 32 + url = "https://github.com/fishfolk/jumpy/commit/8234e6d2c0b33c75e2112596ded1734fdba50fb8.patch?full_index=1"; 33 + hash = "sha256-IWjBw1Wj/6CT/x6xm6vfpUMfk7A5/EsdbPDvWywRFc8="; 34 + }) 35 + ]; 36 + 37 useFetchCargoVendor = true; 38 + cargoHash = "sha256-2I9s1zH94GRqXGBxZYyXOQwNeYrpV1UhUSKGCs9Ce9Q="; 39 40 nativeBuildInputs = [ 41 makeWrapper ··· 86 meta = { 87 description = "Tactical 2D shooter played by up to 4 players online or on a shared screen"; 88 mainProgram = "jumpy"; 89 + homepage = "https://fishfolk.org/games/jumpy"; 90 + changelog = "https://github.com/fishfolk/jumpy/releases/tag/v${finalAttrs.version}"; 91 license = with lib.licenses; [ 92 mit # or 93 asl20 94 + # Assets 95 + cc-by-nc-40 96 ]; 97 maintainers = with lib.maintainers; [ figsoda ]; 98 }; 99 + })