feat(package): hemar: json_escape()

This commit is contained in:
2025-12-09 03:47:27 +00:00
parent 2a846d0375
commit aa5cc832df
19 changed files with 264 additions and 843 deletions
+1 -14
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 ];
}