tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
victoriametrics: remove withVictoriaLogs option
Marie Ramlow
7 months ago
ebfbc036
b9a699fe
-8
2 changed files
expand all
collapse all
unified
split
pkgs
by-name
vi
victoriametrics
package.nix
vm
vmagent
package.nix
-7
pkgs/by-name/vi/victoriametrics/package.nix
···
9
9
withVmAuth ? true, # HTTP proxy for authentication
10
10
withBackupTools ? true, # vmbackup, vmrestore
11
11
withVmctl ? true, # vmctl is used to migrate time series
12
12
-
withVictoriaLogs ? true, # logs server
13
12
}:
14
13
15
14
buildGoModule (finalAttrs: {
···
43
42
++ lib.optionals withBackupTools [
44
43
"app/vmbackup"
45
44
"app/vmrestore"
46
46
-
]
47
47
-
++ lib.optionals withVictoriaLogs [
48
48
-
"app/victoria-logs"
49
49
-
"app/vlinsert"
50
50
-
"app/vlselect"
51
51
-
"app/vlstorage"
52
45
];
53
46
54
47
postPatch = ''
-1
pkgs/by-name/vm/vmagent/package.nix
···
6
6
lib.addMetaAttrs { mainProgram = "vmagent"; } (
7
7
victoriametrics.override {
8
8
withServer = false;
9
9
-
withVictoriaLogs = false;
10
9
withVmAlert = false;
11
10
withVmAuth = false;
12
11
withBackupTools = false;