13 stdenv.mkDerivation rec {
17 src = fetchFromGitHub {
20 sha256 = "sha256-Ppxgy54pAnqJUzNX5c12NHjKTQyEEcPSpCEEVOyZ/LA=";
25 # Pull pending inclusion upstream patch for parallel buil fixes:
26 # https://github.com/ANGSD/angsd/pull/590
28 name = "parallel-make.patch";
29 url = "https://github.com/ANGSD/angsd/commit/89fd1d898078016df390e07e25b8a3eeadcedf43.patch";
30 hash = "sha256-KQgUfr3v8xc+opAm4qcSV2eaupztv4gzJJHyzJBCxqA=";
34 buildInputs = [ htslib zlib bzip2 xz curl openssl ];
36 enableParallelBuilding = true;
38 makeFlags = [ "HTSSRC=systemwide" "prefix=$(out)" ];
41 description = "Program for analysing NGS data";
42 homepage = "http://www.popgen.dk/angsd";
43 maintainers = [ maintainers.bzizou ];
44 license = licenses.gpl2;