diff options
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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)))) |