refactor: legacyPackages

This commit is contained in:
2025-10-10 13:13:03 +00:00
parent 7d55064a44
commit 65fa944df8
18 changed files with 497 additions and 174 deletions

View File

@@ -1,5 +1,11 @@
{ symlinkJoin, writeShellApplication, socat, dash, hectic, curl }:
let
base64 = writeShellApplication {
name = "base64";
runtimeInputs = [ ];
text = builtins.readFile ./base64.sh;
};
# TODO: writeDashApplication
probe = writeShellApplication {
name = "probe";
@@ -9,7 +15,7 @@ let
probe-loop = writeShellApplication {
name = "probe-loop";
runtimeInputs = [ ];
runtimeInputs = [ base64 ];
text = builtins.readFile ./probe-loop.sh;
};