mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
16 lines
432 B
Nix
16 lines
432 B
Nix
{ 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;
|
|
}
|
|
)
|