···273273- Package `noto-fonts-emoji` was renamed to `noto-fonts-color-emoji`;
274274 see [#221181](https://github.com/NixOS/nixpkgs/issues/221181).
275275276276+- Package `cloud-sql-proxy` was renamed to `google-cloud-sql-proxy` as it cannot be used with other cloud providers.;
277277+276278- Package `pash` was removed due to being archived upstream. Use `powershell` as an alternative.
277279278280- `security.sudo.extraRules` now includes `root`'s default rule, with ordering
···11+{ lib
22+, buildGoModule
33+, fetchFromGitHub
44+}:
55+66+buildGoModule rec {
77+ pname = "google-cloud-bigtable-tool";
88+ version = "0.12.0";
99+1010+ src = fetchFromGitHub {
1111+ owner = "googleapis";
1212+ repo = "cloud-bigtable-cbt-cli";
1313+ rev = "v.${version}";
1414+ hash = "sha256-N5nbWMj7kLIdRiwBUWFz4Rat88Wx01i3hceMxAvSjaA=";
1515+ };
1616+1717+ vendorHash = "sha256-kwvEfvHs6XF84bB3Ss1307OjId0nh/0Imih1fRFdY0M=";
1818+1919+ preCheck = ''
2020+ buildFlagsArray+="-short"
2121+ '';
2222+2323+ meta = with lib; {
2424+ description = "Google Cloud Bigtable Tool";
2525+ longDescription = ''
2626+ `cbt` is the Google Cloud Bigtable Tool. A CLI utility to interact with Google Cloud Bigtable.
2727+ The cbt CLI is a command-line interface for performing several different operations on Cloud Bigtable.
2828+ It is written in Go using the Go client library for Cloud Bigtable.
2929+ An overview of its usage can be found in the [Google Cloud docs](https://cloud.google.com/bigtable/docs/cbt-overview).
3030+ For information about Bigtable in general, see the [overview of Bigtable](https://cloud.google.com/bigtable/docs/overview).
3131+ '';
3232+ homepage = "https://github.com/googleapis/cloud-bigtable-cbt-cli";
3333+ license = licenses.asl20;
3434+ maintainers = with maintainers; [ totoroot ];
3535+ mainProgram = "cbt";
3636+ };
3737+}
···11+{ lib
22+, buildGoModule
33+, fetchFromGitHub
44+}:
55+66+buildGoModule rec {
77+ pname = "google-cloud-sql-proxy";
88+ version = "2.7.0";
99+1010+ src = fetchFromGitHub {
1111+ owner = "GoogleCloudPlatform";
1212+ repo = "cloud-sql-proxy";
1313+ rev = "v${version}";
1414+ hash = "sha256-4PB9Eaqb8teF+gmiHD2VAIFnxqiK2Nb0u+xSNAM8iMs=";
1515+ };
1616+1717+ subPackages = [ "." ];
1818+1919+ vendorHash = "sha256-LaI7IdSyB7ETTjqIcIPDf3noEbvwlN3+KqrkSm8B6m8=";
2020+2121+ preCheck = ''
2222+ buildFlagsArray+="-short"
2323+ '';
2424+2525+ meta = with lib; {
2626+ description = "Utility for ensuring secure connections to Google Cloud SQL instances";
2727+ longDescription = ''
2828+ The Cloud SQL Auth Proxy is a utility for ensuring secure connections to your Cloud SQL instances.
2929+ It provides IAM authorization, allowing you to control who can connect to your instance through IAM permissions,
3030+ and TLS 1.3 encryption, without having to manage certificates.
3131+ See the [Connecting Overview](https://cloud.google.com/sql/docs/mysql/connect-overview) page for more information
3232+ on connecting to a Cloud SQL instance, or the [About the Proxy](https://cloud.google.com/sql/docs/mysql/sql-proxy)
3333+ page for details on how the Cloud SQL Proxy works.
3434+ '';
3535+ homepage = "https://github.com/GoogleCloudPlatform/cloud-sql-proxy";
3636+ license = licenses.asl20;
3737+ maintainers = with maintainers; [ nicknovitski totoroot ];
3838+ mainProgram = "cloud-sql-proxy";
3939+ };
4040+}