mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
35 lines
863 B
Nix
35 lines
863 B
Nix
{ lib, stdenv, fetchurl, zlib, htslib, perl, ncurses ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "samtools";
|
|
version = "1.13";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/samtools/samtools/releases/download/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-YWyi4FHMgAmh6cAc/Yx8r4twkW3f9m87dpFAeUZfjGA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ zlib ncurses htslib ];
|
|
|
|
configureFlags = [ "--with-htslib=${htslib}" ]
|
|
++ lib.optional (ncurses == null) "--without-curses";
|
|
|
|
preCheck = ''
|
|
patchShebangs test/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Tools for manipulating SAM/BAM/CRAM format";
|
|
license = licenses.mit;
|
|
homepage = "http://www.htslib.org/";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ mimame unode ];
|
|
};
|
|
}
|