Ben Woodcroft <b.woodcr...@uq.edu.au> writes: > +(define-public cd-hit > + (package > + (name "cd-hit") > + (version "4.6.4") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/weizhongli/cdhit/releases/download/V" > + version > + "/cd-hit-v" > + version > + "-2015-0603.tar.gz"))
I’m not a fan of this layout (in particular: distributing the string on so many lines). Is ‘-2015-0603’ actually part of the version number? If so you may need to use “(version "4.6.4-2015-0603")” and strip off the part beginning with “-” in the first instance of “version” in the URL. I checked the license and according to the documentation it’s really just GPLv2. (There are no license headers.) ~~ Ricardo