I've had this issue for a while now, while adding some packages, I'll create a loop in the package graph, which causes Guix to just loop infinitely when trying to generate derivations. I've included a very rough patch which detects and informs the user what has happened, this is an example of what this looks like (with a version of the wip-rails branch I've broken): $ guix build ruby-rails error: input loop detected, error generating a derivation for # This shouldn't happen with Guix packages, please consider reporting a bug. Report bugs to: bug-guix@gnu.org. GNU Guix home page: General help using GNU software: If any of the packages below are not included in Guix, it could be that one of them is causing the loop. The packages are listed in reverse order, so the first package listed is a input to the second package for example, and the start and end of the detected loop is highlighted with an arrow (--->). ---> # # # # ---> # # # # # # # I'm not particularly fond of the implementation, because the package-derivation function is called from expand-input called from bag->derivation, the information about the part of the graph that has been traversed is passed through each function. The seen-package-list argument could be removed, but the ordering information is really useful when printing out the error message. I think it should be still possible to generate this after finding the issue by searching through the graph of packages, which would allow removing this one argument. One other thought I had is that this could be extracted to something in guix lint, which would at least allow finding these problems, without touching the core derivation related code. What do people think? Thanks, Chris