Heya, On Mon Dec 12, 2022 at 8:31 PM GMT, wrote: > zimoun: yes I usually send an empty mail before a patchset wit multiple patches There's a better way, using ``--cover-letter'': * gnu/packages/wm.scm (libmodule): New variable. --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -1300,6 +1300,28 @@ (define-public libdispatch + (uri (git-reference + (url "https://github.com/FedeDP/libmodule") + (commit version))) Please add a ``file-name'': (file-name (git-file-name name version)) + (arguments '(#:tests? #f)) ;tests not found Use ``list'': (list #:tests? #f) + (description "Libmodule offers a small and simple C implementation of an + actor library that aims to let developers easily create modular C projects.") There should be indentation between ``description'' and ``"..."''; also, some of it seems a wee bit markety. How about this? (description "Libmodule provides a C implementation of the actor model, aiming to help with the creation of modular C projects.") -- (