My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/servers/nosql/victoriametrics/default.nix

23 lines
610 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "VictoriaMetrics";
version = "1.37.4";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "02jr0qz130jz7ncfch1jry0prd00669j53mlmpb6ky0xiz5y2zq1";
};
goPackagePath = "github.com/VictoriaMetrics/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 ];
};
}