2017-11-16 12:46:37 +00:00
|
|
|
# Make sure that the "with-gce" flag is set when building `google-cloud-sdk`
|
|
|
|
# for GCE hosts. This flag prevents "google-compute-engine" from being a
|
|
|
|
# default dependency which is undesirable because this package is
|
|
|
|
#
|
|
|
|
# 1) available only on GNU/Linux (requires `systemd` in particular)
|
|
|
|
# 2) intended only for GCE guests (and is useless elsewhere)
|
|
|
|
# 3) used by `google-cloud-sdk` only on GCE guests
|
|
|
|
#
|
|
|
|
|
2021-10-27 05:10:06 +00:00
|
|
|
{ stdenv, lib, fetchurl, makeWrapper, nixosTests, python, openssl, jq, with-gce ? false }:
|
2016-01-21 11:57:06 +00:00
|
|
|
|
2017-09-17 05:21:02 +00:00
|
|
|
let
|
2019-09-09 13:36:26 +00:00
|
|
|
pythonEnv = python.withPackages (p: with p; [
|
|
|
|
cffi
|
|
|
|
cryptography
|
2021-10-18 19:59:37 +00:00
|
|
|
openssl
|
2019-09-09 13:36:26 +00:00
|
|
|
crcmod
|
|
|
|
] ++ lib.optional (with-gce) google-compute-engine);
|
2016-11-13 10:56:25 +00:00
|
|
|
|
2021-11-10 11:13:56 +00:00
|
|
|
data = import ./data.nix { };
|
|
|
|
sources = system:
|
|
|
|
data.googleCloudSdkPkgs.${system} or (throw "Unsupported system: ${system}");
|
2017-11-01 20:33:23 +00:00
|
|
|
|
2017-09-17 05:21:02 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "google-cloud-sdk";
|
2021-11-10 11:13:56 +00:00
|
|
|
inherit (data) version;
|
2015-05-05 21:09:40 +00:00
|
|
|
|
2021-11-10 11:13:56 +00:00
|
|
|
src = fetchurl (sources stdenv.hostPlatform.system);
|
2017-07-03 17:40:33 +00:00
|
|
|
|
2021-02-16 20:36:53 +00:00
|
|
|
buildInputs = [ python ];
|
2015-05-05 21:09:40 +00:00
|
|
|
|
2021-02-16 20:36:53 +00:00
|
|
|
nativeBuildInputs = [ jq makeWrapper ];
|
2020-01-31 08:53:02 +00:00
|
|
|
|
2019-06-12 15:35:04 +00:00
|
|
|
patches = [
|
2021-02-15 11:30:39 +00:00
|
|
|
# For kubectl configs, don't store the absolute path of the `gcloud` binary as it can be garbage-collected
|
2019-06-12 15:35:04 +00:00
|
|
|
./gcloud-path.patch
|
2021-02-15 11:30:39 +00:00
|
|
|
# Disable checking for updates for the package
|
2020-02-13 11:14:31 +00:00
|
|
|
./gsutil-disable-updates.patch
|
2021-02-28 12:05:26 +00:00
|
|
|
# Try to use cloud_sql_proxy from SDK only if it actually exists, otherwise, search for one in PATH
|
|
|
|
./cloud_sql_proxy_path.patch
|
2019-06-12 15:35:04 +00:00
|
|
|
];
|
2015-05-05 21:09:40 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-02-15 11:30:39 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2019-06-12 15:34:17 +00:00
|
|
|
mkdir -p $out/google-cloud-sdk
|
|
|
|
cp -R * .install $out/google-cloud-sdk/
|
2015-05-05 21:09:40 +00:00
|
|
|
|
2019-06-12 15:34:17 +00:00
|
|
|
mkdir -p $out/google-cloud-sdk/lib/surface/{alpha,beta}
|
2017-07-03 17:40:33 +00:00
|
|
|
cp ${./alpha__init__.py} $out/google-cloud-sdk/lib/surface/alpha/__init__.py
|
|
|
|
cp ${./beta__init__.py} $out/google-cloud-sdk/lib/surface/beta/__init__.py
|
|
|
|
|
2015-05-05 21:09:40 +00:00
|
|
|
# create wrappers with correct env
|
2018-08-17 21:12:16 +00:00
|
|
|
for program in gcloud bq gsutil git-credential-gcloud.sh docker-credential-gcloud; do
|
2015-05-05 21:09:40 +00:00
|
|
|
programPath="$out/google-cloud-sdk/bin/$program"
|
2017-05-21 11:54:33 +00:00
|
|
|
binaryPath="$out/bin/$program"
|
|
|
|
wrapProgram "$programPath" \
|
2019-09-09 08:44:39 +00:00
|
|
|
--set CLOUDSDK_PYTHON "${pythonEnv}/bin/python" \
|
2020-01-10 09:42:37 +00:00
|
|
|
--prefix PYTHONPATH : "${pythonEnv}/${python.sitePackages}" \
|
|
|
|
--prefix PATH : "${openssl.bin}/bin"
|
2017-05-21 11:54:33 +00:00
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $programPath $binaryPath
|
2015-05-05 21:09:40 +00:00
|
|
|
done
|
2018-03-08 22:18:13 +00:00
|
|
|
|
2018-01-22 02:26:30 +00:00
|
|
|
# disable component updater and update check
|
|
|
|
substituteInPlace $out/google-cloud-sdk/lib/googlecloudsdk/core/config.json \
|
|
|
|
--replace "\"disable_updater\": false" "\"disable_updater\": true"
|
|
|
|
echo "
|
|
|
|
[component_manager]
|
|
|
|
disable_update_check = true" >> $out/google-cloud-sdk/properties
|
2015-05-05 21:09:40 +00:00
|
|
|
|
|
|
|
# setup bash completion
|
2020-11-12 21:22:18 +00:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
2021-03-18 19:06:08 +00:00
|
|
|
mv $out/google-cloud-sdk/completion.bash.inc $out/share/bash-completion/completions/gcloud
|
|
|
|
ln -s $out/share/bash-completion/completions/gcloud $out/share/bash-completion/completions/gsutil
|
2015-05-05 21:09:40 +00:00
|
|
|
|
2021-11-10 20:41:44 +00:00
|
|
|
# setup zsh completion
|
|
|
|
mkdir -p $out/share/zsh/site-functions
|
|
|
|
mv $out/google-cloud-sdk/completion.zsh.inc $out/share/zsh/site-functions/_gcloud
|
|
|
|
ln -s $out/share/zsh/site-functions/_gcloud $out/share/zsh/site-functions/_gsutil
|
2021-11-17 18:15:45 +00:00
|
|
|
# zsh doesn't load completions from $FPATH without #compdef as the first line
|
|
|
|
sed -i '1 i #compdef gcloud' $out/share/zsh/site-functions/_gcloud
|
2021-11-10 20:41:44 +00:00
|
|
|
|
2015-05-05 21:09:40 +00:00
|
|
|
# This directory contains compiled mac binaries. We used crcmod from
|
|
|
|
# nixpkgs instead.
|
2020-01-30 21:59:33 +00:00
|
|
|
rm -r $out/google-cloud-sdk/platform/gsutil/third_party/crcmod \
|
|
|
|
$out/google-cloud-sdk/platform/gsutil/third_party/crcmod_osx
|
2020-01-31 08:43:23 +00:00
|
|
|
|
|
|
|
# remove tests and test data
|
|
|
|
find $out -name tests -type d -exec rm -rf '{}' +
|
2020-02-13 11:14:31 +00:00
|
|
|
rm $out/google-cloud-sdk/platform/gsutil/gslib/commands/test.py
|
2020-01-31 08:53:02 +00:00
|
|
|
|
|
|
|
# compact all the JSON
|
|
|
|
find $out -name \*.json | while read path; do
|
|
|
|
jq -c . $path > $path.min
|
|
|
|
mv $path.min $path
|
|
|
|
done
|
2021-02-15 11:30:39 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2015-05-05 21:09:40 +00:00
|
|
|
'';
|
|
|
|
|
2021-10-28 12:44:26 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/gcloud version --format json | jq '."Google Cloud SDK"' | grep "${version}"
|
|
|
|
'';
|
2021-10-27 05:10:06 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-05 21:09:40 +00:00
|
|
|
description = "Tools for the google cloud platform";
|
|
|
|
longDescription = "The Google Cloud SDK. This package has the programs: gcloud, gsutil, and bq";
|
|
|
|
# This package contains vendored dependencies. All have free licenses.
|
2016-05-13 11:48:04 +00:00
|
|
|
license = licenses.free;
|
2017-09-17 05:21:02 +00:00
|
|
|
homepage = "https://cloud.google.com/sdk/";
|
2021-11-10 11:13:56 +00:00
|
|
|
changelog = "https://cloud.google.com/sdk/docs/release-notes";
|
2020-12-30 14:23:26 +00:00
|
|
|
maintainers = with maintainers; [ iammrinal0 pradyuman stephenmw zimbatm ];
|
2021-11-10 11:13:56 +00:00
|
|
|
platforms = builtins.attrNames data.googleCloudSdkPkgs;
|
2021-09-05 12:11:28 +00:00
|
|
|
mainProgram = "gcloud";
|
2015-05-05 21:09:40 +00:00
|
|
|
};
|
|
|
|
}
|