3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/database/timescaledb-tune/default.nix

25 lines
620 B
Nix
Raw Normal View History

2019-03-25 21:22:00 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "timescaledb-tune";
2019-05-08 04:00:00 +01:00
version = "0.6.0";
2019-03-25 21:22:00 +00:00
goPackagePath = "github.com/timescale/timescaledb-tune";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "timescale";
repo = name;
rev = version;
2019-05-08 04:00:00 +01:00
sha256 = "0hjxmjgkqm9sbjbyhs3pzkk1d9vvlcbzwl7ghsigh4h7rw3a0mpk";
2019-03-25 21:22:00 +00:00
};
meta = with stdenv.lib; {
description = "A tool for tuning your TimescaleDB for better performance";
homepage = "https://github.com/timescale/timescaledb-tune";
2019-03-25 21:22:00 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ marsam ];
};
}