Skip to content
Snippets Groups Projects
Commit a7dc055b authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

packages: Make `native-inputs' thunked.

* guix/packages.scm (<package>): Make `native-inputs' thunked.
parent cd52703a
No related branches found
No related tags found
No related merge requests found
...@@ -147,7 +147,7 @@ (define-record-type* <package> ...@@ -147,7 +147,7 @@ (define-record-type* <package>
(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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment