summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--guix.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/guix.scm b/guix.scm
index 32b6388..f9d8c2d 100644
--- a/guix.scm
+++ b/guix.scm
@@ -37,7 +37,7 @@
                       #:recursive? #t
                       #:select? (git-predicate %source-dir)))
   (native-inputs
-   `(,@(package-native-inputs guile-email)
-     ("autoconf" ,autoconf)
-     ("automake" ,automake)
-     ("texinfo" ,texinfo))))
+   (modify-inputs (package-native-inputs guile-email)
+     (prepend autoconf)
+     (prepend automake)
+     (prepend texinfo))))