nixos-configs/packages/protonhax/default.nix
matt1432 6aca512b8a
All checks were successful
Discord / discord commits (push) Has been skipped
docs: add generated packages readme
2025-01-20 15:06:16 -05:00

23 lines
446 B
Nix

{
lib,
mkVersion,
protonhax-src,
stdenv,
...
}:
stdenv.mkDerivation {
pname = "protonhax";
version = mkVersion protonhax-src;
src = protonhax-src;
installPhase = ''
install -Dt $out/bin -m755 protonhax
'';
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];
};
}