Hello, Am Sat, Feb 27, 2021 at 05:14:19PM +0000 schrieb znavko--- via: > Is there some 'guix' command run that will download updates and will check > which packages are to be > substitued, and which are to be compiled?
guix package -n -u (where -n is a shortcut for --dry-run) does this. It is important to put -n first, so that it is not interpreted as the package to be upgraded. And when I see that chromium is going to be compiled locally, I usually do a guix package --do-not-upgrade ungoogled-chromium -u and come back later for chromium. Andreas