Apply suggestions from code review

Co-authored-by: Daniel Sidhion <DanielSidhion@users.noreply.github.com>
This commit is contained in:
Johannes Kirschbauer 2024-05-21 09:42:39 +02:00 committed by Johannes Kirschbauer
parent 1a3afdf852
commit 7f38a9ce11
No known key found for this signature in database

View File

@ -61,31 +61,31 @@ in
(lazyDerivation { inherit derivation }).passthru
(lazyDerivation { inherit derivation }).pythonPath
# Inputs
structured function argument
Takes an attribute set with the following attributes
: derivation
: The derivation to be wrapped.
`derivation`
: The derivation to be wrapped.
: meta
: Optional meta attribute.
`meta`
: Optional meta attribute.
While this function is primarily about derivations, it can improve
the `meta` package attribute, which is usually specified through
`mkDerivation`.
While this function is primarily about derivations, it can improve
the `meta` package attribute, which is usually specified through
`mkDerivation`.
: passthru
: Optional list of assumed outputs. Default: ["out"]
`passthru`
: Optional extra values to add to the returned attrset.
This must match the set of outputs that the returned derivation has.
You must use this when the derivation has multiple outputs.
This can be used for adding package attributes, such as `tests`.
: outputs
: Optional list of assumed outputs. Default: ["out"]
`outputs`
: Optional list of assumed outputs. Default: ["out"]
This must match the set of outputs that the returned derivation has.
You must use this when the derivation has multiple outputs.
This must match the set of outputs that the returned derivation has.
You must use this when the derivation has multiple outputs.
*/
lazyDerivation =
args@{