evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / google-cloud-bigtable-tool / package.nix
blob6e26aac5284dfa703e4e3d730c49730f1dc39eb6
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "google-cloud-bigtable-tool";
8   version = "0.12.0";
10   src = fetchFromGitHub {
11     owner = "googleapis";
12     repo = "cloud-bigtable-cbt-cli";
13     rev = "v.${version}";
14     hash = "sha256-N5nbWMj7kLIdRiwBUWFz4Rat88Wx01i3hceMxAvSjaA=";
15   };
17   vendorHash = "sha256-kwvEfvHs6XF84bB3Ss1307OjId0nh/0Imih1fRFdY0M=";
19   checkFlags = [
20     "-short"
21   ];
23   meta = with lib; {
24     description = "Google Cloud Bigtable Tool";
25     longDescription = ''
26       `cbt` is the Google Cloud Bigtable Tool. A CLI utility to interact with Google Cloud Bigtable.
27       The cbt CLI is a command-line interface for performing several different operations on Cloud Bigtable.
28       It is written in Go using the Go client library for Cloud Bigtable.
29       An overview of its usage can be found in the [Google Cloud docs](https://cloud.google.com/bigtable/docs/cbt-overview).
30       For information about Bigtable in general, see the [overview of Bigtable](https://cloud.google.com/bigtable/docs/overview).
31     '';
32     homepage = "https://github.com/googleapis/cloud-bigtable-cbt-cli";
33     license = licenses.asl20;
34     maintainers = with maintainers; [ totoroot ];
35     mainProgram = "cbt";
36   };