nixpkgs/pkgs/servers/monitoring/timescale-prometheus/default.nix

29 lines
692 B
Nix
Raw Normal View History

{ stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "timescale-prometheus";
version = "0.1.0-beta.2";
src = fetchFromGitHub {
owner = "timescale";
repo = pname;
rev = "${version}";
sha256 = "1rrr0qb27hh3kcmmxapr1j39dhfxf02vihpjf4b7zpwdf1mpvrbc";
};
vendorSha256 = "sha256:0y5rq2y48kf2z1z3a8ags6rqzfvjs54klk2679fk8x0yjamj5x04";
doCheck = false;
meta = with stdenv.lib; {
description = "An open-source analytical platform for Prometheus metrics";
homepage = "https://github.com/timescale/timescale-prometheus";
license = licenses.asl20;
platforms = platforms.unix;
2020-07-29 10:49:07 +00:00
maintainers = with maintainers; [ _0x4A6F ];
};
}