diff options
-rw-r--r-- | guix/gexp.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm index 5021688ac7..6f63afe6a6 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -669,11 +669,8 @@ references; otherwise, return only non-native references." result) result)) (($ <gexp-input> (? gexp? exp) _ #f) - (if native? - (append (gexp-inputs exp #:native? #t) - result) - (append (gexp-inputs exp) - result))) + (append (gexp-inputs exp #:native? native?) + result)) (($ <gexp-input> (? string? str)) (if (direct-store-path? str) (cons `(,str) result) |