3
0
Fork 0
forked from mirrors/nixpkgs

bcftools: fix darwin building

gcc not available
This commit is contained in:
Matthew Bauer 2016-08-10 22:48:19 -05:00
parent 0a1cb79908
commit 96322f6926

View file

@ -12,9 +12,11 @@ stdenv.mkDerivation rec {
buildInputs = [ zlib ];
preBuild = ''
makeFlagsArray=("HSTDIR=${htslib}" "prefix=$out")
'';
makeFlags = [
"HSTDIR=${htslib}"
"prefix=$out"
"CC=cc"
];
meta = with stdenv.lib; {
description = "Tools for manipulating BCF2/VCF/gVCF format, SNP and short indel sequence variants";