summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-06-06 00:04:11 +0200
committerLudovic Courtès <ludo@gnu.org>2013-06-06 00:04:11 +0200
commit9d97a1b3d6ef1a829b36844be5003f1d1537903e (patch)
tree2bc043f07f186d52b29cecd8599d15147347b059 /guix
parent0e999137e9d2f9510d48af322ad3f0741cef9bb7 (diff)
downloadguix-patches-9d97a1b3d6ef1a829b36844be5003f1d1537903e.tar
guix-patches-9d97a1b3d6ef1a829b36844be5003f1d1537903e.tar.gz
packages: Make the `propagated-inputs' field thunked.
* guix/packages.scm (<package>): Make `propagated-inputs' thunked.
Diffstat (limited to 'guix')
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 4f8d87e53a..bb46131132 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -147,7 +147,7 @@ corresponds to the arguments expected by `set-path-environment-variable'."
(inputs package-inputs ; input packages or derivations
(default '()) (thunked))
(propagated-inputs package-propagated-inputs ; same, but propagated
- (default '()))
+ (default '()) (thunked))
(native-inputs package-native-inputs ; native input packages/derivations
(default '()) (thunked))
(self-native-input? package-self-native-input? ; whether to use itself as