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 09:36:18 -04:00
openttd.overrideAttrs (oldAttrs: rec {
pname = "openttd-jgrpp";
2023-08-01 05:44:53 -04:00
version = "0.54.4";
2020-06-22 09:36:18 -04:00
src = fetchFromGitHub rec {
owner = "JGRennison";
repo = "OpenTTD-patches";
rev = "jgrpp-${version}";
2023-08-01 05:44:53 -04:00
hash = "sha256-bTpHlKffQbANXIrAn9WSEK/PEzBW1nzaHhGKIyclAo0=";
2020-06-22 09:36:18 -04: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 09:36:18 -04:00
})