Hello! Am Fri, May 31, 2024 at 09:21:07AM +0900 schrieb B. Wilson: > What's the proper procedure when updating packages to check that its reverse > dependencies aren't broken by the change?
You can run this: $ guix refresh -l xkeyboard-config which replies with Building the following 1876 packages would ensure 4038 dependent packages are rebuilt: localed@241 wlgreet@0.4.1-1.7e79d60 ... Which means that once you have run "guix build localed", "guix build wlgreet" and so on 1876 times successfully, then all dependents will have been built. In this particular case, one should probably create a branch with a number of related changes and have CI build it. Andreas