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

76 lines
2.7 KiB
Nix
Raw Normal View History

2017-09-17 06:21:02 +01:00
{ stdenv, lib, fetchurl, python, cffi, cryptography, pyopenssl, crcmod, google-compute-engine, makeWrapper }:
# other systems not supported yet
2017-09-17 06:21:02 +01:00
let
pythonInputs = [ cffi cryptography pyopenssl crcmod google-compute-engine ];
pythonPath = lib.makeSearchPath python.sitePackages pythonInputs;
2017-11-01 20:33:23 +00:00
sources = name: system: {
i686-linux = {
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-linux-x86.tar.gz";
sha256 = "0aq938s1w9mzj60avmcc68kgll54pl7635vl2mi89f6r56n0xslp";
};
x86_64-darwin = {
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-darwin-x86_64.tar.gz";
sha256 = "13k2i1svry9q800s1jgf8jss0rzfxwk6qci3hsy1wrb9b2mwlz5g";
};
x86_64-linux = {
url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/${name}-linux-x86_64.tar.gz";
sha256 = "1kvaz8p1iflsi85wwi7lb6km6frj70xsricyz1ah0sw3q71zyqmc";
};
}.${system};
2017-09-17 06:21:02 +01:00
in stdenv.mkDerivation rec {
2015-05-05 22:09:40 +01:00
name = "google-cloud-sdk-${version}";
2017-11-01 20:33:23 +00:00
version = "177.0.0";
2015-05-05 22:09:40 +01:00
2017-11-01 20:33:23 +00:00
src = fetchurl (sources name stdenv.system);
2017-09-17 06:21:02 +01:00
buildInputs = [ python makeWrapper ];
2015-05-05 22:09:40 +01:00
phases = [ "installPhase" "fixupPhase" ];
installPhase = ''
mkdir -p "$out"
tar -xzf "$src" -C "$out" google-cloud-sdk
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 22:09:40 +01: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 12:54:33 +01:00
binaryPath="$out/bin/$program"
wrapProgram "$programPath" \
2017-09-17 06:21:02 +01:00
--set CLOUDSDK_PYTHON "${python}/bin/python" \
--prefix PYTHONPATH : "${pythonPath}"
2017-05-21 12:54:33 +01:00
mkdir -p $out/bin
ln -s $programPath $binaryPath
2015-05-05 22:09:40 +01:00
done
# 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 12:48:04 +01:00
meta = with stdenv.lib; {
2015-05-05 22:09:40 +01: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 12:48:04 +01:00
license = licenses.free;
2017-09-17 06:21:02 +01:00
homepage = "https://cloud.google.com/sdk/";
maintainers = with maintainers; [ stephenmw zimbatm ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2015-05-05 22:09:40 +01:00
};
}