depot/third_party/nixpkgs/pkgs/development/tools/database/timescaledb-tune/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

25 lines
642 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "timescaledb-tune";
version = "0.16.0";
src = fetchFromGitHub {
owner = "timescale";
repo = pname;
rev = "v${version}";
sha256 = "sha256-rOAXCru3m31lVFUyxywkuyKWUOJneA7ECMPyvAfw4mg=";
};
vendorHash = "sha256-8Q+KMYu1yiHEYS035NmCvxSgIS/+oRhhcZa6SwmvGgk=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Tool for tuning your TimescaleDB for better performance";
mainProgram = "timescaledb-tune";
homepage = "https://github.com/timescale/timescaledb-tune";
license = licenses.asl20;
maintainers = [ ];
};
}