nixpkgs-suyu/pkgs/applications/science/biology/bowtie2/default.nix

27 lines
745 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, tbb, zlib, python3, perl }:
2017-10-21 22:20:41 +02:00
stdenv.mkDerivation rec {
pname = "bowtie2";
2021-05-25 03:23:52 +02:00
version = "2.4.4";
2017-10-21 22:20:41 +02:00
src = fetchFromGitHub {
owner = "BenLangmead";
repo = pname;
rev = "v${version}";
2021-05-25 03:23:52 +02:00
sha256 = "sha256-2B6w6c/qztyBb1jNA0zg+udQm41ouT1DyB6Ygpi5nC8=";
2017-10-21 22:20:41 +02:00
};
2021-01-02 20:15:25 +01:00
nativeBuildInputs = [ cmake ];
2017-10-21 22:20:41 +02:00
buildInputs = [ tbb zlib python3 perl ];
2017-10-21 22:20:41 +02:00
meta = with lib; {
2017-10-21 22:20:41 +02: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 22:20:41 +02:00
maintainers = with maintainers; [ rybern ];
platforms = platforms.all;
2021-01-02 20:15:25 +01:00
broken = stdenv.isAarch64; # only x86 is supported
2017-10-21 22:20:41 +02:00
};
}