push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
[*.{conf,in}]
trim_trailing_whitespace = unset

View File

@@ -0,0 +1,29 @@
doSub() {
local src=$1
local dst=$2
mkdir -p $(dirname $dst)
substituteAll $src $dst
}
subDir=/
for i in $scripts; do
if test "$(echo $i | cut -c1-2)" = "=>"; then
subDir=$(echo $i | cut -c3-)
else
dst=$out/$subDir/$(stripHash $i | sed 's/\.in//')
doSub $i $dst
chmod +x $dst # !!!
fi
done
subDir=/
for i in $substFiles; do
if test "$(echo $i | cut -c1-2)" = "=>"; then
subDir=$(echo $i | cut -c3-)
else
dst=$out/$subDir/$(stripHash $i | sed 's/\.in//')
doSub $i $dst
fi
done
mkdir -p $out/bin

View File

@@ -0,0 +1,26 @@
#! @shell@ -e
# Make sure that the environment is deterministic.
export PATH=@coreutils@/bin
if test "$1" = "start"; then
if ! @procps@/bin/pgrep ircd; then
if @ipv6Enabled@; then
while ! @iproute2@/sbin/ip addr |
@gnugrep@/bin/grep inet6 |
@gnugrep@/bin/grep global; do
sleep 1;
done;
fi;
rm -rf /home/ircd
mkdir -p /home/ircd
chown ircd: /home/ircd
cd /home/ircd
env - HOME=/homeless-shelter $extraEnv \
@su@/bin/su ircd --shell=/bin/sh -c ' @ircdHybrid@/bin/ircd -configfile @out@/conf/ircd.conf </dev/null -logfile /home/ircd/ircd.log' 2>&1 >/var/log/ircd-hybrid.out
fi;
fi
if test "$1" = "stop" ; then
@procps@/bin/pkill ircd;
fi;

View File

@@ -0,0 +1,158 @@
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.ircdHybrid;
ircdService = pkgs.stdenv.mkDerivation rec {
name = "ircd-hybrid-service";
scripts = [
"=>/bin"
./control.in
];
substFiles = [
"=>/conf"
./ircd.conf
];
inherit (pkgs)
ircdHybrid
coreutils
su
iproute2
gnugrep
procps
;
ipv6Enabled = boolToString config.networking.enableIPv6;
inherit (cfg)
serverName
sid
description
adminEmail
extraPort
;
cryptoSettings =
(optionalString (cfg.rsaKey != null) "rsa_private_key_file = \"${cfg.rsaKey}\";\n")
+ (optionalString (cfg.certificate != null) "ssl_certificate_file = \"${cfg.certificate}\";\n");
extraListen = map (
ip: "host = \"" + ip + "\";\nport = 6665 .. 6669, " + extraPort + "; "
) cfg.extraIPs;
builder = ./builder.sh;
};
in
{
###### interface
options = {
services.ircdHybrid = {
enable = mkEnableOption "IRCD";
serverName = mkOption {
default = "hades.arpa";
type = types.str;
description = ''
IRCD server name.
'';
};
sid = mkOption {
default = "0NL";
type = types.str;
description = ''
IRCD server unique ID in a net of servers.
'';
};
description = mkOption {
default = "Hybrid-7 IRC server.";
type = types.str;
description = ''
IRCD server description.
'';
};
rsaKey = mkOption {
default = null;
example = literalExpression "/root/certificates/irc.key";
type = types.nullOr types.path;
description = ''
IRCD server RSA key.
'';
};
certificate = mkOption {
default = null;
example = literalExpression "/root/certificates/irc.pem";
type = types.nullOr types.path;
description = ''
IRCD server SSL certificate. There are some limitations - read manual.
'';
};
adminEmail = mkOption {
default = "<bit-bucket@example.com>";
type = types.str;
example = "<name@domain.tld>";
description = ''
IRCD server administrator e-mail.
'';
};
extraIPs = mkOption {
default = [ ];
example = [ "127.0.0.1" ];
type = types.listOf types.str;
description = ''
Extra IP's to bind.
'';
};
extraPort = mkOption {
default = "7117";
type = types.str;
description = ''
Extra port to avoid filtering.
'';
};
};
};
###### implementation
config = mkIf config.services.ircdHybrid.enable {
users.users.ircd = {
description = "IRCD owner";
group = "ircd";
uid = config.ids.uids.ircd;
};
users.groups.ircd.gid = config.ids.gids.ircd;
systemd.services.ircd-hybrid = {
description = "IRCD Hybrid server";
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
script = "${ircdService}/bin/control start";
};
};
}

File diff suppressed because it is too large Load Diff