synix/pkgs/jirafeau-cli/default.nix
sid b61461258d
All checks were successful
Build tests / build-hosts (pull_request) Successful in 23s
Flake check / flake-check (pull_request) Successful in 22s
add jirafeau-cli
2026-05-02 22:11:53 +02:00

20 lines
254 B
Nix

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