nixos-configs/devices/servivi/modules/steam-servers/seven-days.nix
matt1432 df6fc2d165
All checks were successful
Discord / discord commits (push) Successful in 1m14s
feat(servers): attempt to make a 7 Days to Die server
2024-06-28 17:43:43 -04:00

27 lines
619 B
Nix

{
lib,
mkSteamPackage,
gcc-unwrapped,
zlib,
}:
mkSteamPackage {
lockFile = ./lock.json;
buildInputs = [
gcc-unwrapped
zlib
];
meta = with lib; {
description = "7 Days to Die dedicated server";
homepage = "https://steamdb.info/app/294420/";
changelog = "https://store.steampowered.com/news/app/251570?updates=true";
sourceProvenance = with sourceTypes; [
binaryNativeCode # Steam games are always going to contain some native binary component.
binaryBytecode # e.g. Unity games using C#
];
license = licenses.unfree;
platforms = ["x86_64-linux"];
};
}