Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to cabalize haskell packages with multiple authors

Tags:

haskell

cabal

All the tutorials and examples of how to cabalize a Haskell package assume the package has a single author (as well as a single maintainer). How to I properly credit multiple Authors in a .cabal file?

like image 616
Jacques Carette Avatar asked Jun 18 '12 02:06

Jacques Carette


1 Answers

I don't know if this is the best practice, but I just use a comma separated list of names.

Author:              John Doe, Tikhon Jelvis

You could also include email addresses:

Author:              John Doe <[email protected]>, Tikhon Jelvis <[email protected]>
like image 140
Tikhon Jelvis Avatar answered Nov 15 '22 10:11

Tikhon Jelvis