doc: add explanatory code comment

This commit is contained in:
Valentin Gagarin 2023-11-13 20:59:15 +01:00 committed by fricklerhandwerk
parent 2bbf67d3c7
commit 0530d6bd04
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@
let
mergeInputs = name:
(attrs.${name} or [ ]) ++
# 1. get all `{build,nativeBuild,...}Inputs` from the elements of `inputsFrom`
# 2. since that is a list of lists, `flatten` that into a regular list
# 3. filter out of the result everything that's in `inputsFrom` itself
# this leaves actual dependencies of the derivations in `inputsFrom`, but never the derivations themselves
(lib.subtractLists inputsFrom (lib.flatten (lib.catAttrs name inputsFrom)));
rest = builtins.removeAttrs attrs [