python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / database / timescaledb-tune / default.nix
blobfaf820c1bde2113323bbc11996cdea7f96331903
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "timescaledb-tune";
5   version = "0.14.2";
7   src = fetchFromGitHub {
8     owner = "timescale";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-vbFfqGWYpw0ppon/0oQMRixQStk+YSi/QFMi0AQoUpQ=";
12   };
14   vendorSha256 = "sha256-n2jrg9FiR/gSrbds/QVV8Duf7BTEs36yYi4F3Ve+d0E=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "A tool for tuning your TimescaleDB for better performance";
20     homepage = "https://github.com/timescale/timescaledb-tune";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ marsam ];
23   };