aboutsummaryrefslogtreecommitdiff
path: root/srcds-pkgs/plugins/Chat-Logger-Redux.nix
diff options
context:
space:
mode:
Diffstat (limited to 'srcds-pkgs/plugins/Chat-Logger-Redux.nix')
-rw-r--r--srcds-pkgs/plugins/Chat-Logger-Redux.nix19
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}
+ '';
+}