nixpkgs/pkgs/tools/games/er-patcher/default.nix

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

42 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2022-04-30 16:47:41 +02:00
{ lib
2022-12-18 23:23:36 +01:00
, stdenvNoCC
2022-04-30 16:47:41 +02:00
, fetchFromGitHub
, python3
}:
2022-12-18 23:23:36 +01:00
stdenvNoCC.mkDerivation rec {
2022-04-30 16:47:41 +02:00
pname = "er-patcher";
2024-01-22 17:14:26 +01:00
version = "1.10.1-1";
2022-04-30 16:47:41 +02:00
src = fetchFromGitHub {
owner = "gurrgur";
repo = "er-patcher";
rev = "v${version}";
2024-01-22 17:14:26 +01:00
sha256 = "sha256-vSCZQBI9Q+7m+TT9pS7R5Fw3BgTxznbFAArJ7J6+tUQ=";
2022-04-30 16:47:41 +02:00
};
buildInputs = [
python3
];
2022-12-18 23:23:36 +01:00
installPhase = ''
mkdir -p $out/bin
install -Dm755 $src/er-patcher $out/bin/er-patcher
patchShebangs $out/bin/er-patcher
'';
2022-04-30 16:47:41 +02:00
meta = with lib; {
homepage = "https://github.com/gurrgur/er-patcher";
changelog = "https://github.com/gurrgur/er-patcher/releases/tag/v${version}";
description = "Enhancement patches for Elden Ring adding ultrawide support, custom frame rate limits and more";
longDescription = ''
A tool aimed at enhancing the experience when playing the game on linux through proton or natively on windows.
This tool is based on patching the game executable through hex-edits. However it is done in a safe and non-destructive way,
that ensures the patched executable is never run with EAC enabled (unless explicity told to do so). Use at your own risk!
'';
license = licenses.mit;
maintainers = [ maintainers.ivar ];
2024-02-11 03:19:15 +01:00
mainProgram = "er-patcher";
2022-04-30 16:47:41 +02:00
};
2022-12-18 23:23:36 +01:00
}