2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-03-25 22:22:00 +01:00
|
|
|
|
2020-08-20 11:20:00 +02:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "timescaledb-tune";
|
2021-03-10 03:20:36 +01:00
|
|
|
version = "0.11.0";
|
2019-03-25 22:22:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "timescale";
|
2020-08-20 11:20:00 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-10 03:20:36 +01:00
|
|
|
sha256 = "sha256-orCnw+NM9jTrg0oeHg0CQvIXzbSkeCwwDUI1t/+k31o=";
|
2019-03-25 22:22:00 +01:00
|
|
|
};
|
|
|
|
|
2021-03-10 03:20:36 +01:00
|
|
|
vendorSha256 = "sha256-n2jrg9FiR/gSrbds/QVV8Duf7BTEs36yYi4F3Ve+d0E=";
|
2020-08-20 11:20:00 +02:00
|
|
|
|
2021-01-23 13:26:19 +01:00
|
|
|
meta = with lib; {
|
2019-03-25 22:22:00 +01:00
|
|
|
description = "A tool for tuning your TimescaleDB for better performance";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/timescale/timescaledb-tune";
|
2019-03-25 22:22:00 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ marsam ];
|
|
|
|
};
|
|
|
|
}
|