Unverified Commit e6899c3b authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #227506 from Artturin/nixoverridereq

nix: use [ ] instead null to empty requiredSystemFeatures
parents 2a3797a3 41794ae4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ let
    patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ];

    # only a stripped down version is build which takes a lot less resources to build
    requiredSystemFeatures = null;
    requiredSystemFeatures = [ ];
  });

  aws-sdk-cpp-nix = (aws-sdk-cpp.override {
@@ -77,7 +77,7 @@ let
    customMemoryManagement = false;
  }).overrideAttrs (args: {
    # only a stripped down version is build which takes a lot less resources to build
    requiredSystemFeatures = null;
    requiredSystemFeatures = [ ];
  });