Merge pull request #107966 from iAmMrinal0/update/google-cloud-sdk

This commit is contained in:
Sandro 2020-12-31 09:28:47 +01:00 committed by GitHub
commit 16e8aa74dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View File

@ -3693,6 +3693,12 @@
githubId = 2789926;
name = "Imran Hossain";
};
iammrinal0 = {
email = "nixpkgs@mrinalpurohit.in";
github = "iammrinal0";
githubId = 890062;
name = "Mrinal";
};
iand675 = {
email = "ian@iankduncan.com";
github = "iand675";

View File

@ -21,18 +21,18 @@ let
sources = name: system: {
x86_64-darwin = {
url = "${baseUrl}/${name}-darwin-x86_64.tar.gz";
sha256 = "0kldvy63gba5k6ymybnggw3q3rlav1gcbpxiwnv6670lk5qzqdsw";
sha256 = "1miqvh2b3mxrrr63q8f5i944mp3rz6685ckmnk5fml2wyc273jiv";
};
x86_64-linux = {
url = "${baseUrl}/${name}-linux-x86_64.tar.gz";
sha256 = "1ifl4skwqhkapfwhymyz7v4jpwpd01n4x3956w5ci8c3zvw8l118";
sha256 = "15kfsxn6j37rsw97ixj7ixkzcby0pkgc5xj7cpqdq975ym58sgv7";
};
}.${system};
in stdenv.mkDerivation rec {
pname = "google-cloud-sdk";
version = "319.0.0";
version = "321.0.0";
src = fetchurl (sources "${pname}-${version}" stdenv.hostPlatform.system);
@ -99,7 +99,7 @@ in stdenv.mkDerivation rec {
# This package contains vendored dependencies. All have free licenses.
license = licenses.free;
homepage = "https://cloud.google.com/sdk/";
maintainers = with maintainers; [ pradyuman stephenmw zimbatm ];
maintainers = with maintainers; [ iammrinal0 pradyuman stephenmw zimbatm ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}