2ce5db779a
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "VictoriaMetrics";
|
|
version = "1.77.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Ike3yO93q/bna/cnHv1sg+gR7iS9cVmNzLViBsfFdVs=";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
postPatch = ''
|
|
# main module (github.com/VictoriaMetrics/VictoriaMetrics) does not contain package
|
|
# github.com/VictoriaMetrics/VictoriaMetrics/app/vmui/packages/vmui/web
|
|
#
|
|
# This appears to be some of test server for development purposes only.
|
|
rm -f app/vmui/packages/vmui/web/{go.mod,main.go}
|
|
'';
|
|
|
|
ldflags = [ "-s" "-w" "-X github.com/VictoriaMetrics/VictoriaMetrics/lib/buildinfo.Version=${version}" ];
|
|
|
|
passthru.tests = { inherit (nixosTests) victoriametrics; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://victoriametrics.com/";
|
|
description = "fast, cost-effective and scalable time series database, long-term remote storage for Prometheus";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ yorickvp ivan ];
|
|
changelog = "https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v${version}";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|