Merge pull request #227506 from Artturin/nixoverridereq

nix: use [ ] instead null to empty requiredSystemFeatures

authored by

Artturi and committed by
GitHub
e6899c3b 2a3797a3

+2 -2
+2 -2
pkgs/tools/package-management/nix/default.nix
··· 69 69 patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ]; 70 70 71 71 # only a stripped down version is build which takes a lot less resources to build 72 - requiredSystemFeatures = null; 72 + requiredSystemFeatures = [ ]; 73 73 }); 74 74 75 75 aws-sdk-cpp-nix = (aws-sdk-cpp.override { ··· 77 77 customMemoryManagement = false; 78 78 }).overrideAttrs (args: { 79 79 # only a stripped down version is build which takes a lot less resources to build 80 - requiredSystemFeatures = null; 80 + requiredSystemFeatures = [ ]; 81 81 }); 82 82 83 83