2024-07-27 15:22:55 -04:00
|
|
|
{
|
2025-01-20 15:06:16 -05:00
|
|
|
lib,
|
2024-07-27 15:22:55 -04:00
|
|
|
mkVersion,
|
|
|
|
protonhax-src,
|
|
|
|
stdenv,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "protonhax";
|
|
|
|
version = mkVersion protonhax-src;
|
|
|
|
|
|
|
|
src = protonhax-src;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dt $out/bin -m755 protonhax
|
|
|
|
'';
|
2025-01-20 15:06:16 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tool to help running other programs (i.e. Cheat Engine) inside Steam's proton.";
|
|
|
|
homepage = "https://github.com/jcnils/protonhax";
|
|
|
|
license = with lib.licenses; [bsd3];
|
|
|
|
};
|
2024-07-27 15:22:55 -04:00
|
|
|
}
|