2022-04-03 18:54:34 +00:00
|
|
|
{ fetchFromGitHub, openttd, zstd, ... }:
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
openttd.overrideAttrs (oldAttrs: rec {
|
|
|
|
pname = "openttd-jgrpp";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.54.1";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
owner = "JGRennison";
|
|
|
|
repo = "OpenTTD-patches";
|
|
|
|
rev = "jgrpp-${version}";
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-MfYh2a3wjWB/5zgTE8AAIREI2OEhykqF0Rad7I+912U=";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
2022-04-03 18:54:34 +00:00
|
|
|
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ zstd ];
|
2020-07-18 16:06:22 +00:00
|
|
|
})
|