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

17 lines
432 B
Nix
Raw Normal View History

{ lib, victoriametrics }:
# This package is build out of the victoriametrics package.
# so no separat update prs are needed for vmagent
# nixpkgs-update: no auto update
lib.addMetaAttrs { mainProgram = "vmagent"; } (
victoriametrics.override {
withServer = false;
withVictoriaLogs = false;
withVmAlert = false;
withVmAuth = false;
withBackupTools = false;
withVmctl = false;
withVmAgent = true;
}
)