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

authored by

Sandro and committed by
GitHub
16e8aa74 d02e895f

+10 -4
+6
maintainers/maintainer-list.nix
··· 3693 3693 githubId = 2789926; 3694 3694 name = "Imran Hossain"; 3695 3695 }; 3696 + iammrinal0 = { 3697 + email = "nixpkgs@mrinalpurohit.in"; 3698 + github = "iammrinal0"; 3699 + githubId = 890062; 3700 + name = "Mrinal"; 3701 + }; 3696 3702 iand675 = { 3697 3703 email = "ian@iankduncan.com"; 3698 3704 github = "iand675";
+4 -4
pkgs/tools/admin/google-cloud-sdk/default.nix
··· 21 21 sources = name: system: { 22 22 x86_64-darwin = { 23 23 url = "${baseUrl}/${name}-darwin-x86_64.tar.gz"; 24 - sha256 = "0kldvy63gba5k6ymybnggw3q3rlav1gcbpxiwnv6670lk5qzqdsw"; 24 + sha256 = "1miqvh2b3mxrrr63q8f5i944mp3rz6685ckmnk5fml2wyc273jiv"; 25 25 }; 26 26 27 27 x86_64-linux = { 28 28 url = "${baseUrl}/${name}-linux-x86_64.tar.gz"; 29 - sha256 = "1ifl4skwqhkapfwhymyz7v4jpwpd01n4x3956w5ci8c3zvw8l118"; 29 + sha256 = "15kfsxn6j37rsw97ixj7ixkzcby0pkgc5xj7cpqdq975ym58sgv7"; 30 30 }; 31 31 }.${system}; 32 32 33 33 in stdenv.mkDerivation rec { 34 34 pname = "google-cloud-sdk"; 35 - version = "319.0.0"; 35 + version = "321.0.0"; 36 36 37 37 src = fetchurl (sources "${pname}-${version}" stdenv.hostPlatform.system); 38 38 ··· 99 99 # This package contains vendored dependencies. All have free licenses. 100 100 license = licenses.free; 101 101 homepage = "https://cloud.google.com/sdk/"; 102 - maintainers = with maintainers; [ pradyuman stephenmw zimbatm ]; 102 + maintainers = with maintainers; [ iammrinal0 pradyuman stephenmw zimbatm ]; 103 103 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 104 104 }; 105 105 }