mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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'.
This commit is contained in:
parent
96dc8f3527
commit
8e57e416c0
1 changed files with 2 additions and 1 deletions
|
@ -273,7 +273,8 @@ (define* (check-for-package-update package updaters #:key warn?)
|
|||
|
||||
(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."
|
||||
|
|
Loading…
Reference in a new issue