diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2019-12-19 20:24:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-21 23:55:25 +0100 |
commit | 345488d76f7e5a3f7f4454a5f90ea2aeb071ed84 (patch) | |
tree | f6c6cc12dad11450ec95d905831e1d0c4e31dba4 /gnu | |
parent | f9488b7043e161a96b698279637236fd6bfcae76 (diff) | |
download | patches-345488d76f7e5a3f7f4454a5f90ea2aeb071ed84.tar patches-345488d76f7e5a3f7f4454a5f90ea2aeb071ed84.tar.gz |
gnu: fastx-toolkit: Build with GCC 6
* gnu/packages/bioinformatics.scm (fastx-toolkit)[native-inputs]: Add gcc-6.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b88322fbf9..52330cb4c1 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 |