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

26 lines
609 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, zlib }:
2021-01-02 18:46:13 +00:00
stdenv.mkDerivation rec {
pname = "bowtie";
2021-09-15 08:35:44 +01:00
version = "1.3.1";
2021-01-02 18:46:13 +00:00
src = fetchFromGitHub {
owner = "BenLangmead";
repo = pname;
rev = "v${version}";
2021-09-15 08:35:44 +01:00
sha256 = "sha256-mWItmrTMPst/NnzSpxxTHcBztDqHPCza9yOsZPwp7G4=";
2021-01-02 18:46:13 +00:00
};
buildInputs = [ zlib ];
installFlags = [ "prefix=$(out)" ];
meta = with lib; {
2021-01-02 18:46:13 +00:00
description = "An ultrafast memory-efficient short read aligner";
license = licenses.artistic2;
2021-08-22 15:06:41 +01:00
homepage = "http://bowtie-bio.sourceforge.net";
2021-01-02 18:46:13 +00:00
maintainers = with maintainers; [ prusnak ];
platforms = platforms.all;
};
}