diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-06-06 00:04:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-06-06 00:04:11 +0200 |
commit | 9d97a1b3d6ef1a829b36844be5003f1d1537903e (patch) | |
tree | 2bc043f07f186d52b29cecd8599d15147347b059 | |
parent | 0e999137e9d2f9510d48af322ad3f0741cef9bb7 (diff) | |
download | patches-9d97a1b3d6ef1a829b36844be5003f1d1537903e.tar patches-9d97a1b3d6ef1a829b36844be5003f1d1537903e.tar.gz |
packages: Make the `propagated-inputs' field thunked.
* guix/packages.scm (<package>): Make `propagated-inputs' thunked.
-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 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 |