forked from mirrors/nixpkgs
google-cloud-sdk: add assertion for x86/x86-64 Linux
This commit is contained in:
parent
ed9b1c673b
commit
8600e38bca
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue