From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH} Add cd-hit. Date: Tue, 23 Feb 2016 14:33:26 +0100 Message-ID: References: <56C99938.40207@uq.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYD5y-0000A4-VI for guix-devel@gnu.org; Tue, 23 Feb 2016 08:33:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYD5t-0004Wz-Vh for guix-devel@gnu.org; Tue, 23 Feb 2016 08:33:42 -0500 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:33005) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYD5t-0004WJ-Mf for guix-devel@gnu.org; Tue, 23 Feb 2016 08:33:37 -0500 In-Reply-To: <56C99938.40207@uq.edu.au> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ben Woodcroft Cc: "guix-devel@gnu.org" Ben Woodcroft 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=E2=80=99m not a fan of this layout (in particular: distributing the str= ing on so many lines). Is =E2=80=98-2015-0603=E2=80=99 actually part of the version number? If so you may need to use =E2=80=9C(version "4.6.4-2015-0603")=E2=80=9D a= nd strip off the part beginning with =E2=80=9C-=E2=80=9D in the first instance of =E2=80= =9Cversion=E2=80=9D in the URL. I checked the license and according to the documentation it=E2=80=99s rea= lly just GPLv2. (There are no license headers.) ~~ Ricardo