add jirafeau-cli
All checks were successful
Build tests / build-hosts (pull_request) Successful in 23s
Flake check / flake-check (pull_request) Successful in 22s

This commit is contained in:
sid 2026-05-02 22:11:53 +02:00
parent b5446a4f0c
commit b61461258d
3 changed files with 173 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{
writeShellApplication,
coreutils,
curl,
...
}:
let
name = "jirafeau-cli";
text = builtins.readFile ./${name}.sh;
in
writeShellApplication {
inherit name text;
meta.mainProgram = name;
runtimeInputs = [
coreutils
curl
];
}