nixpkgs/pkgs/games/openttd/jgrpp.nix

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

16 lines
372 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-05-02 14:04:02 +00:00
version = "0.53.1";
2020-06-22 13:36:18 +00:00
src = fetchFromGitHub rec {
owner = "JGRennison";
repo = "OpenTTD-patches";
rev = "jgrpp-${version}";
2023-05-02 14:04:02 +00:00
hash = "sha256-+5AOsop3x1fkX5UfxMFLhrTLeSnt+E0PYoU5n31N3f4=";
2020-06-22 13:36:18 +00:00
};
buildInputs = oldAttrs.buildInputs ++ [ zstd ];
2020-06-22 13:36:18 +00:00
})