anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / games / openttd / jgrpp.nix
blob72735402047e926c5b840b6915c0d082e7b44d81
1 { fetchFromGitHub, openttd, zstd, ... }:
3 openttd.overrideAttrs (oldAttrs: rec {
4   pname = "openttd-jgrpp";
5   version = "0.62.0";
7   src = fetchFromGitHub rec {
8     owner = "JGRennison";
9     repo = "OpenTTD-patches";
10     rev = "jgrpp-${version}";
11     hash = "sha256-rl0GKKROteP2orT5Z/DHAQPkJFQu/lddQULYfq/x8w8=";
12   };
14   buildInputs = oldAttrs.buildInputs ++ [ zstd ];
16   meta = {
17     homepage = "https://github.com/JGRennison/OpenTTD-patches";
18     changelog = "https://github.com/JGRennison/OpenTTD-patches/blob/jgrpp-${version}/jgrpp-changelog.md";
19     mainProgram = "openttd";
20   };