nixpkgs/pkgs/development/tools/database/timescaledb-tune/default.nix

25 lines
618 B
Nix
Raw Normal View History

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