package sourcemod-plugin-extend-humiliation

This commit is contained in:
Robin Appelman 2026-07-10 22:50:57 +02:00
commit d723744bcf
3 changed files with 34 additions and 1 deletions

View file

@ -83,6 +83,7 @@
"sourcemod-plugin-restorescore"
"sourcemod-plugin-supstats2"
"sourcemod-plugin-waitforstv"
"sourcemod-plugin-extend-humiliation"
]
// {
test = pkgs:
@ -122,7 +123,7 @@
};
devShells.default = {pkgs, ...}: {
packages = with pkgs; [nix-update depotdownloader];
packages = with pkgs; [nix-update];
};
};
}

View file

@ -0,0 +1,31 @@
{
fetchFromGitea,
mkSourcemodPlugin,
nix-update-script,
}:
mkSourcemodPlugin (finalAttrs: {
pname = "sourcemod-plugin-extend-humiliation";
version = "0-unstable-2026-07-10";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "spire";
repo = "docker-comp-server";
rev = "1c0884386cf97d61e0699cffb072fbabdfc59cbf";
hash = "sha256-IKtDtcQhvoexuMSJcgkmNMVrfcBapM6NTar96CMzyvc=";
};
preInstall = ''
rm pause.smx
'';
plugins = ["ExtendHumiliation.sp"];
passthru = {
updateScript = nix-update-script {
extraArgs = [
"--flake"
"--version=branch"
];
};
};
})

View file

@ -19,6 +19,7 @@ in
sourcemod-plugin-who = final.callPackage ./who.nix {};
sourcemod-plugin-demostf = final.callPackage ./demostf.nix {};
sourcemod-plugin-properpregame = final.callPackage ./properpregame.nix {};
sourcemod-plugin-extend-humiliation = final.callPackage ./extend-humiliation.nix {};
}
// listToAttrs (map (info: {
name = "sourcemod-plugin-${info.name}";