mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 23:27:50 +03:00
Merge pull request #267285 from fricklerhandwerk/code-comment
This commit is contained in:
commit
fd78de6eeb
@ -16,6 +16,10 @@
|
|||||||
let
|
let
|
||||||
mergeInputs = name:
|
mergeInputs = name:
|
||||||
(attrs.${name} or [ ]) ++
|
(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)));
|
(lib.subtractLists inputsFrom (lib.flatten (lib.catAttrs name inputsFrom)));
|
||||||
|
|
||||||
rest = builtins.removeAttrs attrs [
|
rest = builtins.removeAttrs attrs [
|
||||||
|
Loading…
Reference in New Issue
Block a user