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

52 lines
1.8 KiB
Nix
Raw Normal View History

2015-05-05 21:09:40 +00:00
{stdenv, fetchurl, python27, python27Packages, makeWrapper}:
stdenv.mkDerivation rec {
2015-10-20 10:15:00 +00:00
version = "0.9.82";
2015-05-05 21:09:40 +00:00
name = "google-cloud-sdk-${version}";
src = fetchurl {
2015-10-20 10:15:00 +00:00
url = "https://dl.google.com/dl/cloudsdk/release/packages/google-cloud-sdk-coretools-linux-static-20151008123015.tar.gz";
sha256 = "11gnhgjj4y4dzi3wfdpnz918m7xraz1k3ady1d6y446hmc5q2512";
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 ${python27Packages.crcmod})"
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
'';
meta = {
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.
license = stdenv.lib.licenses.free;
homepage = "https://cloud.google.com/sdk/";
maintainers = with stdenv.lib.maintainers; [stephenmw];
platforms = stdenv.lib.platforms.all;
};
}