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

33 lines
604 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";
};
jqFilter = {
2025-08-02 10:24:01 +07:00
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
};
build = {
hashFiles = [ ./deno.json ./deno.lock ];
cacheCommand = "deno cache --frozen main.ts";
knownHashes = {
"sha1-gSeoE0sSj+dFQ7SUoyaQV0X/KJE=" =
"sha256-0ZfdWVfShbhgAoSse9vEpFPRh5XTTVjgxGMmezwon9I=";
};
};
2025-08-02 05:10:30 +07:00
}