feat(legacy): helpers: update log, unefficient but works

This commit is contained in:
2025-11-16 15:50:54 +00:00
parent dd943267f0
commit b72e240a83
6 changed files with 243 additions and 29 deletions
+18
View File
@@ -0,0 +1,18 @@
{ symlinkJoin, dash, hectic }: let
shell = "${dash}/bin/dash";
bashOptions = [
"errexit"
"nounset"
];
show-megumin = hectic.writeShellApplication {
inherit shell bashOptions;
name = "show-megumin";
runtimeInputs = [ ];
text = builtins.readFile ./show-megumin.sh;
};
in
symlinkJoin {
name = "sentinèlla";
paths = [ show-megumin ];
}