nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix

61 lines
2.1 KiB
Nix
Raw Normal View History

2015-05-05 21:09:40 +00:00
{stdenv, fetchurl, python27, python27Packages, makeWrapper}:
with python27Packages;
2015-05-05 21:09:40 +00:00
stdenv.mkDerivation rec {
name = "google-cloud-sdk-${version}";
2016-06-10 09:07:01 +00:00
version = "113.0.0";
2016-05-13 11:48:04 +00:00
src =
if stdenv.system == "i686-linux" then
fetchurl {
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-linux-x86.tar.gz";
2016-06-10 09:07:01 +00:00
sha256 = "0v90am3zb77c1d4qbm8pn3mn4xc9xbcw48clca2v5mr5g48aq221";
2016-05-13 11:48:04 +00:00
}
else
fetchurl {
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-linux-x86_64.tar.gz";
2016-06-10 09:07:01 +00:00
sha256 = "1fjc80i1szzppib5pplw3vxh83vzkimlfcpg82vakyhvbjndnqyr";
2016-05-13 11:48:04 +00:00
};
2015-05-05 21:09:40 +00:00
buildInputs = [python27 makeWrapper];
phases = [ "installPhase" "fixupPhase" ];
installPhase = ''
mkdir -p "$out"
tar -xzf "$src" -C "$out" google-cloud-sdk
# create wrappers with correct env
for program in gcloud bq gsutil git-credential-gcloud.sh; do
programPath="$out/google-cloud-sdk/bin/$program"
wrapper="$out/bin/$program"
makeWrapper "$programPath" "$wrapper" \
--set CLOUDSDK_PYTHON "${python27}/bin/python" \
--prefix PYTHONPATH : "$(toPythonPath ${cffi}):$(toPythonPath ${cryptography}):$(toPythonPath ${pyopenssl}):$(toPythonPath ${crcmod})"
2015-05-05 21:09:40 +00: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 11:48:04 +00:00
meta = with stdenv.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";
version = version;
# This package contains vendored dependencies. All have free licenses.
2016-05-13 11:48:04 +00:00
license = licenses.free;
2015-05-05 21:09:40 +00:00
homepage = "https://cloud.google.com/sdk/";
2016-05-13 11:48:04 +00:00
maintainers = with maintainers; [stephenmw zimbatm];
platforms = platforms.linux;
2015-05-05 21:09:40 +00:00
};
}