mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
5d28e33149
google-cloud-sql-proxy: add passthru.updateScript
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "google-cloud-sql-proxy";
|
|
version = "2.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GoogleCloudPlatform";
|
|
repo = "cloud-sql-proxy";
|
|
rev = "v${version}";
|
|
hash = "sha256-nEbrNRrEXXvLYi1vIvukUaq+WQn2HlonaaMn57yIA3I=";
|
|
};
|
|
|
|
subPackages = [ "." ];
|
|
|
|
vendorHash = "sha256-EI2PDVdS9JB8ACkRTsfCBLz4JEmHQ6hApFSSfSvD/cQ=";
|
|
|
|
checkFlags = [
|
|
"-short"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
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";
|
|
};
|
|
}
|