mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 11:53:51 +00:00
Merge pull request #227506 from Artturin/nixoverridereq
nix: use [ ] instead null to empty requiredSystemFeatures
This commit is contained in:
commit
e6899c3b24
@ -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 = [ ];
|
||||
});
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user