lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #145328 from SFrijters/openttd-12.1

openttd: 12.0 -> 12.1, openttd-jgrpp: 0.43.1 -> 0.44.0

authored by

Dmitry Kalinkin and committed by
GitHub
d4554c23 4af5e020

+6 -6
+4 -4
pkgs/games/openttd/default.nix
··· 11 11 }; 12 12 13 13 opensfx = fetchzip { 14 - url = "https://cdn.openttd.org/opensfx-releases/1.0.2/opensfx-1.0.2-all.zip"; 15 - sha256 = "sha256-yRCb49/k8uUUAe9VzUG0LQaBDFP7n9QdrLSJDIthdbA="; 14 + url = "https://cdn.openttd.org/opensfx-releases/1.0.3/opensfx-1.0.3-all.zip"; 15 + sha256 = "sha256-QmfXizrRTu/fUcVOY7tCndv4t4BVW+fb0yUi8LgSYzM="; 16 16 }; 17 17 18 18 openmsx = fetchzip { ··· 29 29 in 30 30 stdenv.mkDerivation rec { 31 31 pname = "openttd"; 32 - version = "12.0"; 32 + version = "12.1"; 33 33 34 34 src = fetchurl { 35 35 url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz"; 36 - sha256 = "sha256-u6D9OADfA3AlnmQtJR82LHwAtHii41Mfa6f4TBwrMtw="; 36 + sha256 = "sha256-JYv1uZgwEIkLoQUYtQa8SrgPfAjM7FlJfpulWkqj5+M="; 37 37 }; 38 38 39 39 nativeBuildInputs = [ cmake makeWrapper ];
+2 -2
pkgs/games/openttd/jgrpp.nix
··· 2 2 3 3 openttd.overrideAttrs (oldAttrs: rec { 4 4 pname = "openttd-jgrpp"; 5 - version = "0.43.1"; 5 + version = "0.44.0"; 6 6 7 7 src = fetchFromGitHub rec { 8 8 owner = "JGRennison"; 9 9 repo = "OpenTTD-patches"; 10 10 rev = "jgrpp-${version}"; 11 - sha256 = "sha256-nCZ3UN2BdpDGbW0CKX/ijxlA3cQ7FPflajQ5TBM1Hdk="; 11 + sha256 = "sha256-/kqwMZGXUYWlCnjk6uShJ5UARtvBSZWPExVel5o4xA8="; 12 12 }; 13 13 })