summary refs log tree commit diff
path: root/pkgs/games/openttd/jgrpp.nix
blob: 83a8f92769451ae9ea17db75e27501ea57c00343 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ fetchFromGitHub, openttd, ... }:

openttd.overrideAttrs (oldAttrs: rec {
  pname = "openttd-jgrpp";
  version = "0.34.4";

  src = fetchFromGitHub rec {
    owner = "JGRennison";
    repo = "OpenTTD-patches";
    rev = "jgrpp-${version}";
    sha256 = "125mgia5hgcsn8314xyiip3z8y23rc3kdv7jczbncqlzsc75624v";
  };
})