diff options
author | yuuko <yuuko@partyvan.io> | 2024-08-29 21:51:04 -0700 |
---|---|---|
committer | yuuko <yuuko@partyvan.io> | 2024-08-29 21:51:04 -0700 |
commit | 56449e59d7aabd1c06fb67a51a1e129b55cb9270 (patch) | |
tree | 19f3faf805e9b6461a5940d1a050d13e5271ef55 /srcds-pkgs/plugins/Chat-Logger-Redux.nix |
break out of system config
Diffstat (limited to 'srcds-pkgs/plugins/Chat-Logger-Redux.nix')
-rw-r--r-- | srcds-pkgs/plugins/Chat-Logger-Redux.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/srcds-pkgs/plugins/Chat-Logger-Redux.nix b/srcds-pkgs/plugins/Chat-Logger-Redux.nix new file mode 100644 index 0000000..7acbc79 --- /dev/null +++ b/srcds-pkgs/plugins/Chat-Logger-Redux.nix @@ -0,0 +1,19 @@ +{ lib, buildSMPlugin, fetchFromGitHub }: +buildSMPlugin rec { + pname = "Chat-Logger-Redux"; + version = "2021-09-06"; + + src = fetchFromGitHub { + owner = "Drixevel-Archive"; + repo = pname; + rev = "5a297b1f3680d2c862ba914476902105c89a9213"; + hash = "sha256-9jVRIRKX3axPYGV0vAWpikQuEQgzIdhcAMMIO2dPWU8="; + }; + + preBuild = '' + # the entire set of sourcemod headers are vendored in here for some reason + rm /build/scripting/include/*.inc + # i don't even know what to say about this one + rm /build/scripting/{compile.{dat,bat},spcomp.exe} + ''; +} |