nixconfig/pkgs/overlay.nix
2023-06-22 20:07:31 +02:00

18 lines
384 B
Nix
Executable File

{
pkgs,
...
}:
[(self: super: {
openttd-jgrpp = super.openttd-jgrpp.overrideAttrs (old: rec{
version = "0.53.3";
src = super.fetchFromGitHub rec {
owner = "JGRennison";
repo = "OpenTTD-patches";
rev = "jgrpp-0.53.3";
hash = "sha256-xpo4E07ifWUZy5z78Fwm1SpLP3wUBaBreZYbJuiNH3w=";
};
});
})]