mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	fix: make addDescriptionsToMappings recurse on attrsets
This commit is contained in:
		
					parent
					
						
							
								351803ace0
							
						
					
				
			
			
				commit
				
					
						201a337a0d
					
				
			
		
					 1 changed files with 11 additions and 4 deletions
				
			
		|  | @ -46,10 +46,17 @@ in | |||
|     # and merges them into | ||||
|     # { someKey = { value = "some_value"; description = "Some Description"; }; } | ||||
|     addDescriptionsToMappings = actualMappings: mappingDefinitions: | ||||
|       self.attrsets.mapAttrs (name: value: { | ||||
|       self.attrsets.mapAttrs (name: value: let | ||||
|         isNested = self.isAttrs value; | ||||
|         returnedValue = | ||||
|           if isNested | ||||
|           then addDescriptionsToMappings actualMappings."${name}" mappingDefinitions."${name}" | ||||
|           else { | ||||
|             value = value; | ||||
|             description = mappingDefinitions."${name}".description; | ||||
|       }) | ||||
|           }; | ||||
|       in | ||||
|         returnedValue) | ||||
|       actualMappings; | ||||
| 
 | ||||
|     mkSetBinding = binding: action: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 n3oney
				n3oney