nixos-configs/packages/protonhax/default.nix
matt1432 f12e7f2513
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(packages): clarify inputs and cleanup meta
2025-02-11 13:05:14 -05:00

26 lines
481 B
Nix

{
# nix build inputs
lib,
mkVersion,
stdenv,
protonhax-src,
...
}:
stdenv.mkDerivation {
pname = "protonhax";
version = mkVersion protonhax-src;
src = protonhax-src;
installPhase = ''
install -Dt $out/bin -m755 protonhax
'';
meta = {
license = with lib.licenses; [bsd3];
homepage = "https://github.com/jcnils/protonhax";
description = ''
Tool to help running other programs (i.e. Cheat Engine) inside Steam's proton.
'';
};
}