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

This commit is contained in:
2025-11-16 15:50:54 +00:00
parent 33cdebb64a
commit bb99ef9a8a
6 changed files with 243 additions and 29 deletions

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 ];
}