diff options
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/guix.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index 87f00338da..b909c651cc 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -188,8 +188,11 @@ ;; libraries, but it means that the Guile libraries ;; needed for the Guix Build Coordinator don't need ;; to be individually specified here. - (map second (package-inputs - guix-build-coordinator-package))) + (append + (map second (package-inputs + guix-build-coordinator-package)) + (map second (package-propagated-inputs + guix-build-coordinator-package)))) #~(begin (use-modules (srfi srfi-1) (ice-9 match) |