self: Reduce the set of dependencies.

By mistake we were adding more dependencies than needed to the Scheme
derivations.

* guix/self.scm (compiled-guix)[dependencies]: Use
'package-transitive-propagated-inputs', not 'package-transitive-inputs'.
This commit is contained in:
Ludovic Courtès 2018-05-31 16:47:19 +02:00
parent 404e5c7d7d
commit e13240f598
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'."
(define dependencies
(match (append-map (lambda (package)
(cons (list "x" package)
(package-transitive-inputs package)))
(package-transitive-propagated-inputs package)))
(list guile-git guile-json guile-ssh))
(((labels packages _ ...) ...)
packages)))