mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
cbf2b8880b
victoriametrics: add passthru.tests
27 lines
781 B
Nix
27 lines
781 B
Nix
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "VictoriaMetrics";
|
|
version = "1.42.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "10da15i3rn11dxnh82czaa2f9a4c3vf1d8kgfayp0dl7xs1xqhsd";
|
|
};
|
|
|
|
goPackagePath = "github.com/VictoriaMetrics/VictoriaMetrics";
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/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 = [ maintainers.yorickvp ];
|
|
};
|
|
}
|