about summary refs log tree commit diff
path: root/pkgs/tools/admin/google-cloud-sdk
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2016-11-13 11:56:25 +0100
committerAristid Breitkreuz <aristidb@gmail.com>2016-11-13 11:56:25 +0100
commit8600e38bcaadef0d4b13e710d9c41b30abf0a9d7 (patch)
tree52eb53142b4e50500a9a5164ae7dc4b8b986cf3d /pkgs/tools/admin/google-cloud-sdk
parented9b1c673b0a19fbddc5f8e757e94846ea174ec3 (diff)
downloadnixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.tar
nixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.tar.gz
nixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.tar.bz2
nixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.tar.lz
nixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.tar.xz
nixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.tar.zst
nixlib-8600e38bcaadef0d4b13e710d9c41b30abf0a9d7.zip
google-cloud-sdk: add assertion for x86/x86-64 Linux
Diffstat (limited to 'pkgs/tools/admin/google-cloud-sdk')
-rw-r--r--pkgs/tools/admin/google-cloud-sdk/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix
index 49c8bf14f05a..90bfd97ab593 100644
--- a/pkgs/tools/admin/google-cloud-sdk/default.nix
+++ b/pkgs/tools/admin/google-cloud-sdk/default.nix
@@ -2,6 +2,9 @@
 
 with python27Packages;
 
+# other systems not supported yet
+assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
+
 stdenv.mkDerivation rec {
   name = "google-cloud-sdk-${version}";
   version = "134.0.0";