nixpkgs/pkgs/tools/misc/cloud-sql-proxy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
788 B
Nix
Raw Normal View History

2021-09-16 20:44:46 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2018-03-05 22:31:01 +00:00
2021-09-16 20:44:46 +00:00
buildGoModule rec {
pname = "cloud-sql-proxy";
2022-08-13 16:05:25 +00:00
version = "1.31.2";
2018-03-05 22:31:01 +00:00
2021-09-16 20:44:46 +00:00
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = "cloudsql-proxy";
rev = "v${version}";
2022-08-13 16:05:25 +00:00
sha256 = "sha256-wlMwl1S9WKtCoruKhMVK1197/3/OWhvvXTT1tH/yPlI=";
2018-03-05 22:31:01 +00:00
};
2021-09-16 20:44:46 +00:00
subPackages = [ "cmd/cloud_sql_proxy" ];
2018-03-05 22:31:01 +00:00
2022-08-13 16:05:25 +00:00
vendorSha256 = "sha256-OMvu0LCYv0Z03ZM2o8UZx/Su2rdvTJp5DUZa8/MtQSc=";
2021-11-03 18:25:13 +00:00
2022-05-21 00:02:04 +00:00
preCheck = ''
buildFlagsArray+="-short"
'';
2018-03-05 22:31:01 +00:00
meta = with lib; {
2018-03-05 22:31:01 +00:00
description = "An authenticating proxy for Second Generation Google Cloud SQL databases";
2021-09-16 20:44:46 +00:00
homepage = "https://github.com/GoogleCloudPlatform/cloudsql-proxy";
2018-03-05 22:31:01 +00:00
license = licenses.asl20;
2021-09-16 20:44:46 +00:00
maintainers = with maintainers; [ nicknovitski ];
2021-11-03 18:25:13 +00:00
mainProgram = "cloud_sql_proxy";
2018-03-05 22:31:01 +00:00
};
}