From 56449e59d7aabd1c06fb67a51a1e129b55cb9270 Mon Sep 17 00:00:00 2001 From: yuuko Date: Thu, 29 Aug 2024 21:51:04 -0700 Subject: break out of system config --- srcds-pkgs/plugins/Chat-Logger-Redux.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 srcds-pkgs/plugins/Chat-Logger-Redux.nix (limited to 'srcds-pkgs/plugins/Chat-Logger-Redux.nix') 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} + ''; +} -- cgit v1.2.3