mirror of
https://codeberg.org/spire/nix.git
synced 2026-08-02 12:25:00 +02:00
package sourcemod-plugin-extend-humiliation
This commit is contained in:
parent
0a6beedf7b
commit
d723744bcf
3 changed files with 34 additions and 1 deletions
|
|
@ -83,6 +83,7 @@
|
||||||
"sourcemod-plugin-restorescore"
|
"sourcemod-plugin-restorescore"
|
||||||
"sourcemod-plugin-supstats2"
|
"sourcemod-plugin-supstats2"
|
||||||
"sourcemod-plugin-waitforstv"
|
"sourcemod-plugin-waitforstv"
|
||||||
|
"sourcemod-plugin-extend-humiliation"
|
||||||
]
|
]
|
||||||
// {
|
// {
|
||||||
test = pkgs:
|
test = pkgs:
|
||||||
|
|
@ -122,7 +123,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
devShells.default = {pkgs, ...}: {
|
devShells.default = {pkgs, ...}: {
|
||||||
packages = with pkgs; [nix-update depotdownloader];
|
packages = with pkgs; [nix-update];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
31
nix/sourcemod/plugins/extend-humiliation.nix
Normal file
31
nix/sourcemod/plugins/extend-humiliation.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
@ -19,6 +19,7 @@ in
|
||||||
sourcemod-plugin-who = final.callPackage ./who.nix {};
|
sourcemod-plugin-who = final.callPackage ./who.nix {};
|
||||||
sourcemod-plugin-demostf = final.callPackage ./demostf.nix {};
|
sourcemod-plugin-demostf = final.callPackage ./demostf.nix {};
|
||||||
sourcemod-plugin-properpregame = final.callPackage ./properpregame.nix {};
|
sourcemod-plugin-properpregame = final.callPackage ./properpregame.nix {};
|
||||||
|
sourcemod-plugin-extend-humiliation = final.callPackage ./extend-humiliation.nix {};
|
||||||
}
|
}
|
||||||
// listToAttrs (map (info: {
|
// listToAttrs (map (info: {
|
||||||
name = "sourcemod-plugin-${info.name}";
|
name = "sourcemod-plugin-${info.name}";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue