~ruther/guix-local

8e57e416c0a6431a14d487ff8b69dece76d37c03 — Ludovic Courtès 8 years ago 96dc8f3
refresh: Account for hidden packages.

Suggested by Marius Bakke <mbakke@fastmail.com>
in <https://bugs.gnu.org/29177>.

* guix/scripts/refresh.scm (all-packages): Pass #:select? to
'fold-packages'.
1 files changed, 2 insertions(+), 1 deletions(-)

M guix/scripts/refresh.scm
M guix/scripts/refresh.scm => guix/scripts/refresh.scm +2 -1
@@ 273,7 273,8 @@ the latest known version of ~a (~a)~%")

(define (all-packages)
  "Return the list of all the distro's packages."
  (fold-packages cons '()))
  (fold-packages cons '()
                 #:select? (const #t)))           ;include hidden packages

(define (list-dependents packages)
  "List all the things that would need to be rebuilt if PACKAGES are changed."