32 lines
357 B
Nix
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;
|
|
}
|