2022-04-03 13:52:19 +02:00
|
|
|
{ fetchFromGitHub, openttd, zstd, ... }:
|
2020-06-22 15:36:18 +02:00
|
|
|
|
|
|
|
openttd.overrideAttrs (oldAttrs: rec {
|
|
|
|
pname = "openttd-jgrpp";
|
2022-04-03 13:43:24 +02:00
|
|
|
version = "0.47.1";
|
2020-06-22 15:36:18 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
owner = "JGRennison";
|
|
|
|
repo = "OpenTTD-patches";
|
|
|
|
rev = "jgrpp-${version}";
|
2022-04-03 13:43:24 +02:00
|
|
|
hash = "sha256-AMd2KXy/ODByeV9CkEd51KbE/+fZ8Us3WzsWCnn7nh0=";
|
2020-06-22 15:36:18 +02:00
|
|
|
};
|
2022-04-03 13:52:19 +02:00
|
|
|
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ zstd ];
|
2020-06-22 15:36:18 +02:00
|
|
|
})
|