nixpkgs/pkgs/games/openttd/jgrpp.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
560 B
Nix
Raw Normal View History

{ fetchFromGitHub, openttd, zstd, ... }:
2020-06-22 13:36:18 +00:00
openttd.overrideAttrs (oldAttrs: rec {
pname = "openttd-jgrpp";
2023-11-28 18:21:50 +00:00
version = "0.56.0";
2020-06-22 13:36:18 +00:00
src = fetchFromGitHub rec {
owner = "JGRennison";
repo = "OpenTTD-patches";
rev = "jgrpp-${version}";
2023-11-28 18:21:50 +00:00
hash = "sha256-J5xDg8c5Vvgu0LBZnt7uMJ5etbqmCPlEeizR7/Uj8K0=";
2020-06-22 13:36:18 +00:00
};
buildInputs = oldAttrs.buildInputs ++ [ zstd ];
meta = {
homepage = "https://github.com/JGRennison/OpenTTD-patches";
changelog = "https://github.com/JGRennison/OpenTTD-patches/blob/jgrpp-${version}/jgrpp-changelog.md";
};
2020-06-22 13:36:18 +00:00
})