diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-05-25 16:14:57 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-05-25 16:14:57 +0200 |
commit | a7dc055bb5e07e716e929f8a906081fbe0422ad3 (patch) | |
tree | 96df3fa87670a1e75f22aa6e23ea0a8c783792b0 /guix/packages.scm | |
parent | cd52703ace1fe30d28427e583816372afd4e3018 (diff) | |
download | gnu-guix-a7dc055bb5e07e716e929f8a906081fbe0422ad3.tar gnu-guix-a7dc055bb5e07e716e929f8a906081fbe0422ad3.tar.gz |
packages: Make `native-inputs' thunked.
* guix/packages.scm (<package>): Make `native-inputs' thunked.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 2 |
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 |