Commit 05d09a6d authored by Elliot Cameron's avatar Elliot Cameron
Browse files

google-cloud-sdk/components: use fetchurl instead of builtins.fetchurl

These URLs don't need to be fetched at evaluation time. This change speeds up evaluation considerably for these components and allows them to be used in Hydra.
parent 1813936a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchurl
, system
, snapshotPath
, autoPatchelfHook
@@ -137,7 +138,7 @@ let
      inherit pname version snapshot;
      src =
        lib.optionalString (src != "")
          (builtins.fetchurl
          (fetchurl
            {
              url = src;
              inherit sha256;