aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/database/timescaledb-tune/default.nix
blob: da5ba3fea64db176d74097130fc26c2c479cfdbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "timescaledb-tune";
  version = "0.6.0";

  goPackagePath = "github.com/timescale/timescaledb-tune";

  goDeps = ./deps.nix;

  src = fetchFromGitHub {
    owner = "timescale";
    repo = name;
    rev = version;
    sha256 = "0hjxmjgkqm9sbjbyhs3pzkk1d9vvlcbzwl7ghsigh4h7rw3a0mpk";
  };

  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 ];
  };
}