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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
745 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, tbb, zlib, python3, perl }:
2017-10-21 20:20:41 +00:00
stdenv.mkDerivation rec {
pname = "bowtie2";
2022-01-23 22:45:59 +00:00
version = "2.4.5";
2017-10-21 20:20:41 +00:00
src = fetchFromGitHub {
owner = "BenLangmead";
repo = pname;
rev = "v${version}";
2022-01-23 22:45:59 +00:00
sha256 = "sha256-xCsTkQXrZS+Njn0YfidhPln+OwVfTXOqbtB0dCfTP2U=";
2017-10-21 20:20:41 +00:00
};
2021-01-02 19:15:25 +00:00
nativeBuildInputs = [ cmake ];
2017-10-21 20:20:41 +00:00
buildInputs = [ tbb zlib python3 perl ];
2017-10-21 20:20:41 +00:00
meta = with lib; {
2017-10-21 20:20:41 +00: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 20:20:41 +00: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 20:20:41 +00:00
};
}