dotfiles/pkgs/tobserver-agent.nix
2026-07-24 20:30:06 +07:00

32 lines
357 B
Nix

{ script
, coreutils
, curl
, findutils
, git
, gitleaks
, gnused
, jq
, nix
, nixpkgs-fmt
, openssh
, writeShellApplication
}:
writeShellApplication {
name = "tobserver-agent";
runtimeInputs = [
coreutils
curl
findutils
git
gitleaks
gnused
jq
nix
nixpkgs-fmt
openssh
];
text = builtins.readFile script;
}