gr-base/shelf/deno/hjq/scroll.nix

26 lines
410 B
Nix
Raw Normal View History

2025-08-02 05:10:30 +07:00
{
2025-08-02 08:49:39 +07:00
name = "hjq";
description = "Drop-in jq replacement for HJSON that tries to preserve comments";
inputs = {
2025-08-02 10:24:01 +07:00
stdin = {
format = "HJSON";
react = "push";
};
jq_filter = {
format = "string";
react = "push";
};
2025-08-02 08:49:39 +07:00
};
outputs = {
2025-08-02 10:24:01 +07:00
stdout = {
format = "HJSON";
react = "push";
};
2025-08-02 08:49:39 +07:00
};
2025-08-02 05:10:30 +07:00
cache-command = "deno cache --reload main.ts";
}