packages: Make `native-inputs' thunked.
* guix/packages.scm (<package>): Make `native-inputs' thunked.
This commit is contained in:
parent
cd52703ace
commit
a7dc055bb5
|
@ -147,7 +147,7 @@ corresponds to the arguments expected by `set-path-environment-variable'."
|
||||||
(propagated-inputs package-propagated-inputs ; same, but propagated
|
(propagated-inputs package-propagated-inputs ; same, but propagated
|
||||||
(default '()))
|
(default '()))
|
||||||
(native-inputs package-native-inputs ; native input packages/derivations
|
(native-inputs package-native-inputs ; native input packages/derivations
|
||||||
(default '()))
|
(default '()) (thunked))
|
||||||
(self-native-input? package-self-native-input? ; whether to use itself as
|
(self-native-input? package-self-native-input? ; whether to use itself as
|
||||||
; a native input when cross-
|
; a native input when cross-
|
||||||
(default #f)) ; compiling
|
(default #f)) ; compiling
|
||||||
|
|
Loading…
Reference in New Issue