3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/biology/bowtie2/default.nix

27 lines
717 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, tbb, zlib }:
2017-10-21 21:20:41 +01:00
stdenv.mkDerivation rec {
pname = "bowtie2";
2021-05-16 02:23:50 +01:00
version = "2.4.3";
2017-10-21 21:20:41 +01:00
src = fetchFromGitHub {
owner = "BenLangmead";
repo = pname;
rev = "v${version}";
2021-05-16 02:23:50 +01:00
sha256 = "sha256-uEKTB8935YY6lpXv2tJBQ1hrRk63vALLQb6SUXsVyhQ=";
2017-10-21 21:20:41 +01:00
};
2021-01-02 19:15:25 +00:00
nativeBuildInputs = [ cmake ];
2017-10-21 21:20:41 +01:00
2021-01-02 19:15:25 +00:00
buildInputs = [ tbb zlib ];
2017-10-21 21:20:41 +01:00
meta = with lib; {
2017-10-21 21:20:41 +01:00
description = "An ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences";
license = licenses.gpl3;
homepage = "http://bowtie-bio.sf.net/bowtie2";
2017-10-21 21:20:41 +01:00
maintainers = with maintainers; [ rybern ];
platforms = platforms.all;
2021-01-02 19:15:25 +00:00
broken = stdenv.isAarch64; # only x86 is supported
2017-10-21 21:20:41 +01:00
};
}