feat(package): hemar: json_escape()

This commit is contained in:
2025-12-09 03:47:27 +00:00
parent 71082b6414
commit 73dc9aee9e
19 changed files with 264 additions and 843 deletions

View File

@@ -6,19 +6,6 @@ let
"nounset"
];
test = hectic.writeShellApplication {
inherit shell bashOptions;
name = "hemar-test";
runtimeInputs = [ ];
text = ''
# shellcheck disable=SC2034
WORKSPACE=${./.}
${builtins.readFile hectic.helpers.posix-shell.log}
${builtins.readFile ./test.sh}
'';
};
hemar = hectic.writeShellApplication {
inherit shell bashOptions;
name = "hemar";
@@ -34,5 +21,5 @@ let
in
symlinkJoin {
name = "hemar";
paths = [ hemar test ];
paths = [ hemar ];
}