Commit Graph

744 Commits

Author SHA1 Message Date
Rick van Schijndel
331e26b6ec
Merge pull request #173867 from trofi/fix-fno-common-for-kssd
kssd: pull upstream fix for -fno-common tollchains
2022-05-28 20:39:38 +02:00
Sandro
3b9985498d
Merge pull request #174036 from trofi/workaround-fno-common-for-paml
paml: add -fcommon workaround
2022-05-25 00:35:00 +02:00
Sergei Trofimovich
8cba3775d8 paml: add -fcommon workaround
Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

    ld: /build/ccKomtcd.o:(.bss+0x4544): multiple definition of `SeqTypes';
      /build/ccx7EsgU.o:(.bss+0x2a0dfdc): first defined here
2022-05-22 20:23:12 +01:00
Sergei Trofimovich
94a5ae4f91 mni_autoreg: pull upstream workaround for -fno-common toolchains
Without the change build fails on upstream gcc-10 as:

    ld: lib_minctracc.a(minctracclib.c.o):(.bss+0x78): multiple definition of
      `prog_name'; CMakeFiles/xfm2param.dir/Extra_progs/xfm2param.c.o:(.bss+0x18): first defined here
2022-05-22 14:37:30 +01:00
Bobby Rong
3b468e68b7
Merge pull request #173017 from trofi/workaround-fno-common-for-freebayes
freebayes: add -fcommon workaround
2022-05-22 13:39:14 +08:00
Sergei Trofimovich
eb0590ec3d kssd: pull upstream fix for -fno-common tollchains
Without the change build fails on upstream gcc-10 as:

    ld: ccD2iWhk.o:(.bss+0x8): multiple definition of `domain';
      ccgA4lYl.o:(.bss+0x8): first defined here
    ld: ccD2iWhk.o:(.bss+0x0): multiple definition of `long_domain';
      ccgA4lYl.o:(.bss+0x0): first defined here
2022-05-21 11:22:53 +01:00
Ben Darwin
5cf446f41b ezminc: mark broken
Package refuses to build with current GCC (11), but building with older
GCC causes error linking libminc and I don't want to pin a bunch of
deps.

A newer version is available upstream but it only works with ITK 5.0
(see https://github.com/BIC-MNI/EZminc/issues/15),
but we have 4.x and 5.2.x in tree and I'm reluctant to add 5.0 just for
one package (even ITK 4.x is only used by ants and ezminc and should be
removed as soon as ants is upgraded).
2022-05-17 10:24:07 -07:00
Sergei Trofimovich
deaab56289 freebayes: add -fcommon workaround
Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

    ld: foomatic_rip-options.o:/build/foomatic-filters-4.0.17/options.c:49: multiple definition of `cupsfilter';
      foomatic_rip-foomaticrip.o:/build/foomatic-filters-4.0.17/foomaticrip.c:158: first defined here
2022-05-14 13:19:17 +01:00
Thomas Gerbet
44c1590f1f bayescan: fix the build
Moved back to C++14 to avoid the new errors and warnings introduced with
C++17.
2022-05-13 12:00:08 +02:00
Theodore Ni
81046b393b
bowtie: fix build on case insensitive file systems
Add a patch that removes the current source directory from the include
search path during compilation so that #include <version> does not end
up picking the VERSION source code file.
2022-05-11 03:20:03 -05:00
Theodore Ni
802a8416b6
bowtie: add arm64 patch to build on M1 Macs
This does not fix the build on Macs, but it brings the build on M1 Macs
to parity with non-M1 Macs.
2022-05-11 02:36:56 -05:00
Sergei Trofimovich
428045f39b bwa: pull upstream fix for -fno-common tollchains
Without the change build fails on -fno-common toolchains like upstream
gcc-10 as:

    $ nix build -L --impure --expr 'with import ./. {}; bwa.overrideAttrs (oa: {   NIX_CFLAGS_COMPILE = (oa.NIX_CFLAGS_COMPILE or "") + "-fno-common"; })'
    ...
    ld: ./libbwa.a(rope.o):/build/bwa-0.7.17/rle.h:33:
      multiple definition of `rle_auxtab'; ./libbwa.a(bwtindex.o):/build/bwa-0.7.17/rle.h:33: first defined here
    ld: ./libbwa.a(rle.o):/build/bwa-0.7.17/rle.h:33:
      multiple definition of `rle_auxtab'; ./libbwa.a(bwtindex.o):/build/bwa-0.7.17/rle.h:33: first defined here
2022-05-08 08:56:43 +01:00
Luis Pedro Coelho
596c5e7ea2 Static bwa
AR needs to be passed specifically on the command line
2022-05-04 02:20:50 +02:00
Luis Pedro Coelho
4758873378 Static build for samtools
Curses is not supported (it may be possible to support it)
2022-05-04 02:16:17 +02:00
Luis Pedro Coelho
0b1c28d5a1 Static build for megahit 2022-05-04 02:13:31 +02:00
Vladimír Čunát
c480cc2895
Merge branch 'master' into staging-next-2022-04-23 2022-04-30 23:02:28 +02:00
R. Ryantm
a82b1b63c3 blast: 2.12.0 -> 2.13.0 2022-04-29 09:39:10 -05:00
github-actions[bot]
073cad8fd6
Merge master into staging-next 2022-04-25 12:04:02 +00:00
Sandro
2f517412c4
Merge pull request #165477 from rbreslow/dcm2niix-optional-modules 2022-04-25 11:59:49 +02:00
Rocky Breslow
d1c3fea7ec
dcm2niix: support usage of suggested Cloudflare zlib 2022-04-18 15:00:45 -04:00
Rocky Breslow
9019ce0106
dcm2niix: add maintainer
Also, fix grammatical error in long description.
2022-04-18 15:00:16 -04:00
Ben Siraphob
259fa13d53 treewide: remove nativeBuildInputs that are in stdenv 2022-04-16 21:46:46 +03:00
Fabián Heredia Montiel
8a9d5e296b cmtk: add -std=c++11 to fix build on gcc11 2022-04-15 11:15:30 -05:00
Malo Bourgon
0e802eafad treewide: add meta.mainProgram to many packages 2022-04-14 10:24:01 -07:00
Artturi
ebf6f84ea2
Merge pull request #164722 from armeenm/bump-eggnog-mapper
eggnog-mapper: 1.0.3 -> 2.1.7
2022-04-10 14:37:21 +03:00
Rocky Breslow
09b7444b82
dcm2niix: add support for configuring optional compile-time modules
Right now, the dcm2niix package produces a single binary without support for
dcm2niibatch, JPEG-LS, OpenJPEG, or an alternative zlib library. The official
build process for dcm2niix configures all these options (minus batch support). I
was motivated to make these changes so my organization could process JPEG 2000
imagery using the Nix binary.
2022-04-04 10:41:27 -04:00
ajs124
60f1e6ffe2 ncbi_tools: remove after being marked broken for over two years
It was marked in commit b9948fedc6 by Robin Gloster on 2017-03-30 (commited on 2017-03-30)
2022-04-03 16:14:18 +01:00
Ben Siraphob
5187709ff7
Merge pull request #166508 from siraben/automake-buildinputs 2022-03-31 03:15:41 -05:00
Ben Siraphob
21faf9fc29
treewide: move autoconf, automake to nativeBuildInputs 2022-03-30 20:17:24 -05:00
Sandro
1f6bdf4d93
Merge pull request #165458 from rbreslow/add-flywheel-cli 2022-03-29 13:33:54 +02:00
Rocky Breslow
603e9d7b64
flywheel-cli: init at 16.2.0 2022-03-28 15:54:39 -04:00
Felix Buehler
3bc5196252 treewide: rename name to pname&version 2022-03-23 22:55:50 +01:00
Armeen Mahdian
6cfaf0a464 eggnog-mapper: 1.0.3 -> 2.1.7
https://github.com/eggnogdb/eggnog-mapper/releases
2022-03-18 10:26:47 -05:00
Bruno Bzeznik
7d62054650 angsd: init at 0.937 2022-03-04 09:17:35 -06:00
Matthew Wakefield
e85b65f986
minimap2: enable aarch64 builds (#161169)
Co-authored-by: Bobby Rong <rjl931189261@126.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-04 12:27:29 +01:00
Justin Bedo
89eff15f31
last: 1260 -> 1268 2022-03-02 13:35:56 +11:00
Felix Buehler
fe7678ca81 raxml-mpi: remove appendToName to have a consistent package name for repology 2022-02-28 12:46:15 +01:00
Felix Buehler
13dca33cdc neuron-mpi: remove appendToName to have a consistent package name for repology 2022-02-28 12:46:15 +01:00
R. Ryantm
1e7c64aae1 bcftools: 1.14 -> 1.15 2022-02-25 11:12:05 -08:00
R. Ryantm
ce9d28cc49 picard-tools: 2.26.10 -> 2.26.11 2022-02-24 17:34:18 +00:00
Scriptkiddi
4e60a4823b febio-studio: init at 1.6.1 2022-02-21 16:43:36 +01:00
R. RyanTM
94f61e4c82
SPAdes: 3.15.3 -> 3.15.4
(#158938)
2022-02-18 00:55:34 +01:00
R. Ryantm
240262f564 messer-slim: 3.7 -> 3.7.1 2022-02-14 00:46:29 +00:00
Justin Bedő
2759d6f8d8
Merge pull request #159675 from r-ryantm/auto-update/picard-tools
picard-tools: 2.26.9 -> 2.26.10
2022-02-13 09:53:20 +11:00
Justin Bedő
7ff9c00c4b
Merge pull request #159562 from r-ryantm/auto-update/mosdepth
mosdepth: 0.3.2 -> 0.3.3
2022-02-13 09:27:54 +11:00
R. Ryantm
8a4946df2d picard-tools: 2.26.9 -> 2.26.10 2022-02-12 22:20:29 +00:00
R. Ryantm
8bb7bc766f mosdepth: 0.3.2 -> 0.3.3 2022-02-12 14:31:47 +00:00
R. Ryantm
6ca5bb6e20 last: 1256 -> 1260 2022-02-12 02:52:18 +00:00
Renaud
2ddcc2b369 hisat2: update homepage
and use SPDX 3.0 license identifier
2022-02-06 15:10:53 +01:00
R. Ryantm
d44e044d84 kallisto: 0.46.2 -> 0.48.0 2022-01-31 09:53:54 -08:00