2022-04-03 11:52:19 +00:00
|
|
|
{ fetchFromGitHub, openttd, zstd, ... }:
|
2020-06-22 13:36:18 +00:00
|
|
|
|
|
|
|
openttd.overrideAttrs (oldAttrs: rec {
|
|
|
|
pname = "openttd-jgrpp";
|
2023-02-05 22:18:59 +00:00
|
|
|
version = "0.50.3";
|
2020-06-22 13:36:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
owner = "JGRennison";
|
|
|
|
repo = "OpenTTD-patches";
|
|
|
|
rev = "jgrpp-${version}";
|
2023-02-05 22:18:59 +00:00
|
|
|
hash = "sha256-VJ8Qd4wiFbX/aY8pEWlh9wEjML0c7P8yrOC1fiQD7ts=";
|
2020-06-22 13:36:18 +00:00
|
|
|
};
|
2022-04-03 11:52:19 +00:00
|
|
|
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ zstd ];
|
2020-06-22 13:36:18 +00:00
|
|
|
})
|