nixos-configs/packages/protonhax/default.nix
matt1432 8c8c62bb6e
All checks were successful
Discord / discord commits (push) Has been skipped
feat(bbsteamie): add setup for palia map
2024-07-27 15:22:55 -04:00

16 lines
227 B
Nix

{
mkVersion,
protonhax-src,
stdenv,
...
}:
stdenv.mkDerivation {
pname = "protonhax";
version = mkVersion protonhax-src;
src = protonhax-src;
installPhase = ''
install -Dt $out/bin -m755 protonhax
'';
}