summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-05-25 16:14:57 +0200
committerLudovic Courtès <ludo@gnu.org>2013-05-25 16:14:57 +0200
commita7dc055bb5e07e716e929f8a906081fbe0422ad3 (patch)
tree96df3fa87670a1e75f22aa6e23ea0a8c783792b0
parentcd52703ace1fe30d28427e583816372afd4e3018 (diff)
packages: Make `native-inputs' thunked.
* guix/packages.scm (<package>): Make `native-inputs' thunked.
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 0ac456f010..9d11b468fb 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -147,7 +147,7 @@ corresponds to the arguments expected by `set-path-environment-variable'."
(propagated-inputs package-propagated-inputs ; same, but propagated
(default '()))
(native-inputs package-native-inputs ; native input packages/derivations
- (default '()))
+ (default '()) (thunked))
(self-native-input? package-self-native-input? ; whether to use itself as
; a native input when cross-
(default #f)) ; compiling