From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55022) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ii1Q0-0002Ry-2k for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ii1Py-0001na-Qw for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39570) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ii1Py-0001m2-K3 for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ii1Py-0001SQ-F6 for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:02 -0500 Subject: [bug#38676] [PATCH 2/2] gnu: fastx-toolkit: Build with GCC 6 Resent-Message-ID: From: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= Date: Thu, 19 Dec 2019 20:24:09 +0100 Message-ID: <20191219192409.16812-2-madalinionel.patrascu@mdc-berlin.de> In-Reply-To: <20191219192409.16812-1-madalinionel.patrascu@mdc-berlin.de> References: <20191219192409.16812-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38676@debbugs.gnu.org Cc: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= * gnu/packages/bioinformatics.scm (fastx-toolkit)[native-inputs]: Add gcc-6. --- gnu/packages/bioinformatics.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 528b603476..27ff70b1fb 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2995,7 +2995,8 @@ reasonable amount of time and memory. For large alignments, FastTree is (inputs `(("libgtextutils" ,libgtextutils))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("gcc" ,gcc-6) ;; doesn't build with later versions + ("pkg-config" ,pkg-config))) (home-page "http://hannonlab.cshl.edu/fastx_toolkit/") (synopsis "Tools for FASTA/FASTQ file preprocessing") (description -- 2.24.1