2015-05-05 23:09:40 +02:00
|
|
|
{stdenv, fetchurl, python27, python27Packages, makeWrapper}:
|
|
|
|
|
2016-01-21 12:57:06 +01:00
|
|
|
with python27Packages;
|
|
|
|
|
2016-11-13 11:56:25 +01:00
|
|
|
# other systems not supported yet
|
2017-02-13 13:43:19 +01:00
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin";
|
2016-11-13 11:56:25 +01:00
|
|
|
|
2015-05-05 23:09:40 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "google-cloud-sdk-${version}";
|
2017-06-30 19:14:10 +02:00
|
|
|
version = "161.0.0";
|
2016-05-13 13:48:04 +02:00
|
|
|
|
|
|
|
src =
|
|
|
|
if stdenv.system == "i686-linux" then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-linux-x86.tar.gz";
|
2017-06-30 19:14:10 +02:00
|
|
|
sha256 = "43a78a9d2c3ee9d9e50200b1e90512cd53ded40b56e05effe31fe9847b1bdd4c";
|
2016-05-13 13:48:04 +02:00
|
|
|
}
|
2017-02-13 13:43:19 +01:00
|
|
|
else if stdenv.system == "x86_64-darwin" then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-darwin-x86_64.tar.gz";
|
2017-06-30 19:14:10 +02:00
|
|
|
sha256 = "0706dbea1279be2bc98a497d1bfed61a9cc29c305d908a376bcdb4403035b323";
|
2017-02-13 13:43:19 +01:00
|
|
|
}
|
2016-05-13 13:48:04 +02:00
|
|
|
else
|
|
|
|
fetchurl {
|
|
|
|
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-linux-x86_64.tar.gz";
|
2017-06-30 19:14:10 +02:00
|
|
|
sha256 = "7aa6094d1f9c87f4c2c4a6bdad6a1113aac5e72ea673e659d9acbb059dfd037e";
|
2016-05-13 13:48:04 +02:00
|
|
|
};
|
2015-05-05 23:09:40 +02:00
|
|
|
|
2017-07-03 19:40:33 +02:00
|
|
|
|
2015-05-05 23:09:40 +02:00
|
|
|
buildInputs = [python27 makeWrapper];
|
|
|
|
|
|
|
|
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
|
|
|
|
for program in gcloud bq gsutil git-credential-gcloud.sh; do
|
|
|
|
programPath="$out/google-cloud-sdk/bin/$program"
|
2017-05-21 13:54:33 +02:00
|
|
|
binaryPath="$out/bin/$program"
|
|
|
|
wrapProgram "$programPath" \
|
2015-05-05 23:09:40 +02:00
|
|
|
--set CLOUDSDK_PYTHON "${python27}/bin/python" \
|
2016-01-21 12:57:06 +01:00
|
|
|
--prefix PYTHONPATH : "$(toPythonPath ${cffi}):$(toPythonPath ${cryptography}):$(toPythonPath ${pyopenssl}):$(toPythonPath ${crcmod})"
|
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
|
|
|
|
|
|
|
|
# install man pages
|
|
|
|
mv "$out/google-cloud-sdk/help/man" "$out"
|
|
|
|
|
|
|
|
# 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";
|
|
|
|
version = version;
|
|
|
|
# This package contains vendored dependencies. All have free licenses.
|
2016-05-13 13:48:04 +02:00
|
|
|
license = licenses.free;
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://cloud.google.com/sdk/;
|
2016-05-13 13:48:04 +02:00
|
|
|
maintainers = with maintainers; [stephenmw zimbatm];
|
2017-02-13 13:43:19 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-05-05 23:09:40 +02:00
|
|
|
};
|
|
|
|
}
|