tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
vmagent: 1.91.3 -> 1.93.0
R. Ryantm
2 years ago
667d0193
b51db7ec
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
monitoring
vmagent
default.nix
+2
-2
pkgs/servers/monitoring/vmagent/default.nix
reviewed
···
1
1
{ lib, fetchFromGitHub, buildGoModule }:
2
2
buildGoModule rec {
3
3
pname = "vmagent";
4
4
-
version = "1.91.3";
4
4
+
version = "1.93.0";
5
5
6
6
src = fetchFromGitHub {
7
7
owner = "VictoriaMetrics";
8
8
repo = "VictoriaMetrics";
9
9
rev = "v${version}";
10
10
-
sha256 = "sha256-xW31Lm+WiJ1quMaIDa7tbZuKhILTMdUviIDTRJT1Cqg=";
10
10
+
sha256 = "sha256-NkpMGsNz4knt5QY6B9sPJ3GcXEgPNyNgAsNBs9F2GOQ=";
11
11
};
12
12
13
13
ldflags = [ "-s" "-w" "-X github.com/VictoriaMetrics/VictoriaMetrics/lib/buildinfo.Version=${version}" ];