nixos-configs/packages/protonhax/default.nix

27 lines
481 B
Nix
Raw Normal View History

{
# nix build inputs
2025-01-20 15:06:16 -05:00
lib,
mkVersion,
stdenv,
protonhax-src,
...
}:
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 = {
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.
'';
2025-01-20 15:06:16 -05:00
};
}