socat: ship it

This commit is contained in:
2025-07-23 22:56:14 +00:00
parent 0066b11754
commit 55d23c92c0
3 changed files with 13 additions and 1 deletions

View File

@@ -112,7 +112,7 @@ in
"ssh" "ssh"
"sshpass" "sshpass"
"smartmontools" # smartctl "smartmontools" # smartctl
# "socat" "socat"
"strace" "strace"
"subversion" "subversion"
"tcpdump" "tcpdump"

View File

@@ -191,6 +191,7 @@
./sm64coopdx.nix ./sm64coopdx.nix
./sm64ex-coop.nix ./sm64ex-coop.nix
./smartmontools.nix ./smartmontools.nix
./socat.nix
./sops.nix ./sops.nix
./soundconverter.nix ./soundconverter.nix
./splatmoji.nix ./splatmoji.nix

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
sane.programs.socat = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.socat [
"socat"
# socat-broker.sh, socat-chain.sh, socat-mux.sh
"socat-*"
];
sandbox.net = "all";
};
}