13 lines
323 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ ... }:
final: prev: {
openttd-jgrpp = prev.openttd-jgrpp.overrideAttrs (old: rec {
version = "0.53.3";
src = prev.fetchFromGitHub rec {
owner = "JGRennison";
repo = "OpenTTD-patches";
rev = "jgrpp-${version}";
hash = "sha256-xpo4E07ifWUZy5z78Fwm1SpLP3wUBaBreZYbJuiNH3w=";
};
});
}