Merge pull request #292937 from adisbladis/zipattrs-env

lib.zipAttrs: Remove needless function wrapping
This commit is contained in:
Silvan Mosberger 2024-03-06 19:39:48 +01:00 committed by GitHub
commit b180a6af30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -885,10 +885,7 @@ rec {
Type:
zipAttrs :: [ AttrSet ] -> AttrSet
*/
zipAttrs =
# List of attribute sets to zip together.
sets:
zipAttrsWith (name: values: values) sets;
zipAttrs = zipAttrsWith (name: values: values);
/*
Merge a list of attribute sets together using the `//` operator.