2017-11-16 13:46:37 +01: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
|
|
|
|
#
|
|
|
|
|
|
|
|
{ stdenv, lib, fetchurl, makeWrapper, python, cffi, cryptography, pyopenssl,
|
|
|
|
crcmod, google-compute-engine, with-gce ? false }:
|
2016-01-21 12:57:06 +01:00
|
|
|
|
2017-09-17 07:21:02 +02:00
|
|
|
let
|
2017-11-16 13:46:37 +01:00
|
|
|
pythonInputs = [ cffi cryptography pyopenssl crcmod ]
|
|
|
|
++ lib.optional (with-gce) google-compute-engine;
|
2017-09-17 07:21:02 +02:00
|
|
|
pythonPath = lib.makeSearchPath python.sitePackages pythonInputs;
|
2016-11-13 11:56:25 +01:00
|
|
|
|
2017-11-16 11:12:55 +01:00
|
|
|
baseUrl = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads";
|
2017-11-01 21:33:23 +01:00
|
|
|
sources = name: system: {
|
|
|
|
x86_64-darwin = {
|
2017-11-16 11:12:55 +01:00
|
|
|
url = "${baseUrl}/${name}-darwin-x86_64.tar.gz";
|
2018-09-04 14:42:54 +02:00
|
|
|
sha256 = "1d5z575vw07jk7528bsqgdd875b3zwayrdnidvxpd2n8j4bip654";
|
2017-11-01 21:33:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
x86_64-linux = {
|
2017-11-16 11:12:55 +01:00
|
|
|
url = "${baseUrl}/${name}-linux-x86_64.tar.gz";
|
2018-09-04 14:42:54 +02:00
|
|
|
sha256 = "0ljslvp68ml5mglrl7kakgkqskbzglf3i5jv5d7jld28d0kbzj2c";
|
2017-11-01 21:33:23 +01:00
|
|
|
};
|
|
|
|
}.${system};
|
|
|
|
|
2017-09-17 07:21:02 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2015-05-05 23:09:40 +02:00
|
|
|
name = "google-cloud-sdk-${version}";
|
2018-09-04 14:42:54 +02:00
|
|
|
version = "215.0.0";
|
2015-05-05 23:09:40 +02:00
|
|
|
|
2018-08-20 21:11:29 +02:00
|
|
|
src = fetchurl (sources name stdenv.hostPlatform.system);
|
2017-07-03 19:40:33 +02:00
|
|
|
|
2017-09-17 07:21:02 +02:00
|
|
|
buildInputs = [ python makeWrapper ];
|
2015-05-05 23:09:40 +02:00
|
|
|
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"
|
|
|
|
tar -xzf "$src" -C "$out" google-cloud-sdk
|
|
|
|
|
2017-07-03 19:40:33 +02:00
|
|
|
mkdir $out/google-cloud-sdk/lib/surface/alpha
|
|
|
|
cp ${./alpha__init__.py} $out/google-cloud-sdk/lib/surface/alpha/__init__.py
|
|
|
|
|
|
|
|
mkdir $out/google-cloud-sdk/lib/surface/beta
|
|
|
|
cp ${./beta__init__.py} $out/google-cloud-sdk/lib/surface/beta/__init__.py
|
|
|
|
|
2015-05-05 23:09:40 +02:00
|
|
|
# create wrappers with correct env
|
2018-08-17 23:12:16 +02:00
|
|
|
for program in gcloud bq gsutil git-credential-gcloud.sh docker-credential-gcloud; do
|
2015-05-05 23:09:40 +02:00
|
|
|
programPath="$out/google-cloud-sdk/bin/$program"
|
2017-05-21 13:54:33 +02:00
|
|
|
binaryPath="$out/bin/$program"
|
|
|
|
wrapProgram "$programPath" \
|
2017-09-17 07:21:02 +02:00
|
|
|
--set CLOUDSDK_PYTHON "${python}/bin/python" \
|
|
|
|
--prefix PYTHONPATH : "${pythonPath}"
|
2017-05-21 13:54:33 +02:00
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $programPath $binaryPath
|
2015-05-05 23:09:40 +02:00
|
|
|
done
|
2018-03-08 23:18:13 +01:00
|
|
|
|
2018-01-22 03:26:30 +01: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 23:09:40 +02:00
|
|
|
|
|
|
|
# setup bash completion
|
|
|
|
mkdir -p "$out/etc/bash_completion.d/"
|
|
|
|
mv "$out/google-cloud-sdk/completion.bash.inc" "$out/etc/bash_completion.d/gcloud.inc"
|
|
|
|
|
|
|
|
# This directory contains compiled mac binaries. We used crcmod from
|
|
|
|
# nixpkgs instead.
|
|
|
|
rm -r $out/google-cloud-sdk/platform/gsutil/third_party/crcmod
|
|
|
|
'';
|
|
|
|
|
2016-05-13 13:48:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-05 23:09:40 +02: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 13:48:04 +02:00
|
|
|
license = licenses.free;
|
2017-09-17 07:21:02 +02:00
|
|
|
homepage = "https://cloud.google.com/sdk/";
|
|
|
|
maintainers = with maintainers; [ stephenmw zimbatm ];
|
2018-03-08 23:18:13 +01:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2015-05-05 23:09:40 +02:00
|
|
|
};
|
|
|
|
}
|