Hi Jack, Jack Hill <jackh...@jackhill.us> skribis:
> The build log is; > > ``` > (repl-version 0 0) > (exception misc-error (value #f) (value "Unbound variable: ~s") (value > (mcron-service-type)) (value #f)) > ``` > > Presumably there was some change to the mcron-service-type recently > that requires changes in my channel, but I don't see what they could > be or how to fix my channel. > > What's going on here? What is the Guile exception trying to tell me? The Guile exception possibly means that code in your channel refers to ‘mcron-service-type’, but that this variable is unbound. It could be because one of your modules lacks #:use-module (gnu services mcron). HTH, Ludo’.