From a7dc055bb5e07e716e929f8a906081fbe0422ad3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Sat, 25 May 2013 16:14:57 +0200
Subject: [PATCH] packages: Make `native-inputs' thunked.

* guix/packages.scm (<package>): Make `native-inputs' thunked.
---
 guix/packages.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index 0ac456f0108..9d11b468fbc 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -147,7 +147,7 @@ (define-record-type* <package>
   (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
-- 
GitLab