Unverified Commit b9d52f37 authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

google-cloud-sdk: components system -> stdenv.hostPlatform.system (#461143)

parents 8b34d647 bb228f39
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  stdenv,
  fetchurl,
  system,
  snapshotPath,
  autoPatchelfHook,
  python3,
@@ -125,7 +124,7 @@ let
    };

  # Filter out dependencies not supported by current system
  filterForSystem = builtins.filter (drv: builtins.elem system drv.meta.platforms);
  filterForSystem = builtins.filter (drv: lib.meta.availableOn stdenv.hostPlatform drv);

  # Make a google-cloud-sdk component
  mkComponent =