Merge pull request #314167 from reckenrode/override-sdk-list-inputs-fix

overrideSDK: handle propagated lists of inputs

authored by Emily and committed by GitHub c6a4f2c6 20b31911

+2
+2
pkgs/stdenv/darwin/override-sdk.nix
··· 287 287 288 288 replacements = lib.pipe propagatedInputs [ 289 289 (lib.filter (pkg: pkg != null)) 290 + lib.flatten 290 291 (map (dep: { 291 292 name = builtins.unsafeDiscardStringContext dep; 292 293 value = getReplacement newPackages dep; ··· 311 312 let 312 313 mapPackageDeps = lib.flip lib.pipe [ 313 314 (lib.filter (pkg: pkg != null)) 315 + lib.flatten 314 316 (map (pkg: { 315 317 key = builtins.unsafeDiscardStringContext pkg; 316 318 package = pkg;