2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-03-25 21:22:00 +00:00
|
|
|
|
2020-08-20 10:20:00 +01:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "timescaledb-tune";
|
2021-01-07 04:20:00 +00:00
|
|
|
version = "0.10.0";
|
2019-03-25 21:22:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "timescale";
|
2020-08-20 10:20:00 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-01-07 04:20:00 +00:00
|
|
|
sha256 = "0vrbbswmg6z3n012mqd1jasqk01navypzv5m00r6c9bxj72hgcxl";
|
2019-03-25 21:22:00 +00:00
|
|
|
};
|
|
|
|
|
2020-08-20 10:20:00 +01:00
|
|
|
vendorSha256 = "0hbpprbxs19fcar7xcy42kn9yfzhal2zsv5pml9ghiv2s61yns4z";
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2019-03-25 21:22:00 +00:00
|
|
|
description = "A tool for tuning your TimescaleDB for better performance";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/timescale/timescaledb-tune";
|
2019-03-25 21:22:00 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ marsam ];
|
|
|
|
};
|
|
|
|
}
|