Skip to content

Commit

Permalink
Merge pull request #227506 from Artturin/nixoverridereq
Browse files Browse the repository at this point in the history
nix: use [ ] instead null to empty requiredSystemFeatures
  • Loading branch information
Artturin authored Apr 22, 2023
2 parents 2a3797a + 41794ae commit e6899c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/package-management/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ 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 {
apis = [ "s3" "transfer" ];
customMemoryManagement = false;
}).overrideAttrs (args: {
# only a stripped down version is build which takes a lot less resources to build
requiredSystemFeatures = null;
requiredSystemFeatures = [ ];
});


Expand Down

0 comments on commit e6899c3

Please sign in to comment.