Hi Konrad, Konrad Hinsen skribis: > * gnu/packages/commencement.scm: (gfortran-toolchain): New variable. > * gnu/packages/commencement.scm: (make-gcc-toolchain): Added argument "language" This LGTM, though I’d have a minor request: > - (synopsis "Complete GCC tool chain for C/C++ development") > + (synopsis (format #f > + "Complete GCC tool chain for ~a development" > + language)) > (description > - "This package provides a complete GCC tool chain for C/C++ development to > -be installed in user profiles. This includes GCC, as well as libc (headers > -an d binaries, plus debugging symbols in the @code{debug} output), and Binutils.") > + (format > + #f > + "This package provides a complete GCC tool chain for ~a development to > +be installed in user profiles. This includes GCC, as well as libc (headers > +and binaries, plus debugging symbols in the @code{debug} output), and Binutils." > + language)) There’s this weird requirement that for the sake of i18n, we must not construct synopses/descriptions like this: https://guix.gnu.org/manual/devel/en/html_node/Synopses-and-Descriptions.html I’d suggest something as shown below. Could you update the patch along those lines? Thanks, Ludo’.