depot/third_party/nixpkgs/pkgs/tools/misc/google-cloud-sql-proxy/default.nix
Default email b5f92a349c Project import generated by Copybara.
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
2023-10-19 15:55:26 +02:00

40 lines
1.4 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "google-cloud-sql-proxy";
version = "2.7.1";
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = "cloud-sql-proxy";
rev = "v${version}";
hash = "sha256-8UoAN5z84gGV869AgOWGrC92NdEnkw5b6QME4QKQ/mM=";
};
subPackages = [ "." ];
vendorHash = "sha256-S2bt015AD25K6yrVGK3qv8Gq2fVifVV0AVBSt/8V9So=";
preCheck = ''
buildFlagsArray+="-short"
'';
meta = with lib; {
description = "Utility for ensuring secure connections to Google Cloud SQL instances";
longDescription = ''
The Cloud SQL Auth Proxy is a utility for ensuring secure connections to your Cloud SQL instances.
It provides IAM authorization, allowing you to control who can connect to your instance through IAM permissions,
and TLS 1.3 encryption, without having to manage certificates.
See the [Connecting Overview](https://cloud.google.com/sql/docs/mysql/connect-overview) page for more information
on connecting to a Cloud SQL instance, or the [About the Proxy](https://cloud.google.com/sql/docs/mysql/sql-proxy)
page for details on how the Cloud SQL Proxy works.
'';
homepage = "https://github.com/GoogleCloudPlatform/cloud-sql-proxy";
license = licenses.asl20;
maintainers = with maintainers; [ nicknovitski totoroot ];
mainProgram = "cloud-sql-proxy";
};
}