mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
Merge pull request #235197 from hercules-ci/simplify-concatMapAttrs-trace
lib.concatMapAttrs: Simplify stack trace
This commit is contained in:
commit
9772ecb6c4
@ -123,7 +123,11 @@ rec {
|
||||
{ x = "a"; y = "b"; }
|
||||
=> { x = "a"; xa = "a"; y = "b"; yb = "b"; }
|
||||
*/
|
||||
concatMapAttrs = f: flip pipe [ (mapAttrs f) attrValues (foldl' mergeAttrs { }) ];
|
||||
concatMapAttrs = f: v:
|
||||
foldl' mergeAttrs { }
|
||||
(attrValues
|
||||
(mapAttrs f v)
|
||||
);
|
||||
|
||||
|
||||
/* Update or set specific paths of an attribute set.
|
||||
|
Loading…
Reference in New Issue
Block a user