nixpkgs/pkgs/by-name/vm/vmagent/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
288 B
Nix
Raw Normal View History

{ lib, victoriametrics }:
lib.addMetaAttrs { mainProgram = "vmagent"; } (
victoriametrics.override {
withServer = false;
withVictoriaLogs = false;
withVmAlert = false;
withVmAuth = false;
withBackupTools = false;
withVmctl = false;
withVmAgent = true;
}
)