2020-08-20 10:20:00 +01:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2019-03-25 21:22:00 +00:00
|
|
|
|
2020-08-20 10:20:00 +01:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "timescaledb-tune";
|
|
|
|
version = "0.9.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}";
|
|
|
|
sha256 = "0vncwwvw7y6g3crd4n5vvd6jwdsa8vsvsmfwy5mad4j6lix09ajx";
|
2019-03-25 21:22:00 +00:00
|
|
|
};
|
|
|
|
|
2020-08-20 10:20:00 +01:00
|
|
|
vendorSha256 = "0hbpprbxs19fcar7xcy42kn9yfzhal2zsv5pml9ghiv2s61yns4z";
|
|
|
|
|
2019-03-25 21:22:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|